文档参考如下:
自定义组件 | 微信开放文档
微信开发者平台文档
https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/
首先新建一个components文件夹,然后在components文件夹下面新建一个tabs文件夹,再在tabs文件夹下新建名为tabs的Component,目录如下:
如果你在创建自定义组件的时候出现以下问题,这是新版本微信开发者工具特带的检查效果(window7所使用的旧版本开发工具不会报此错误),
可以将以下代码复制到project.config.json中的setting中即可
- "ignoreDevUnusedFiles": false,
- "ignoreUploadUnusedFiles": false,
紧接着同时,还要在 wxml
文件中编写组件模板,在 wxss
文件中加入组件样式,它们的写法与页面的写法类似。即把以下代码加入tabs.wxml中,代码如下:
- <view class="inner">
- {{innerText}}
- </view>
- <slot></slot>
加入了之后我们需要到tabs.js文件中定义innerText属性值,在tabs.js中组件的属性列表代码块下properties加入以下代码,如下:
- // 这里定义了innerText属性,属性值可以在组件使用时指定
- innerText: {
- type: String,
- value: 'default value',
- }
最后在tabs.wxss中加入样式代码即可,wxss文件内代码如下:
- .inner {
- color: red;
- }
使用已注册的自定义组件前,首先要在页面的 json 文件中进行引用声明。此时需要提供每个自定义组件的标签名和对应的自定义组件文件路径
- {
- "usingComponents": {
- "tabs": "/components/tabs/tabs"
- }
- }
这样,在页面的 wxml 中就可以像使用基础组件一样使用自定义组件。节点名即自定义组件的标签名,节点属性即传递给组件的属性值。
<tabs></tabs>
效果图:
自定义组件传值需要注意的一个点就是不能以驼峰命名如果遇见是大写的字母要变成小写并在中间加一个“-”,例如我们的自定义组件属性值“innerText”,就要变成“inner-text”。
<tabs inner-text="ar.小白"></tabs>
效果图:
在meeting文件夹下list.wxml中加入以下代码:
- <!--pages/meeting/list/list.wxml-->
- <!-- <text>pages/meeting/list/list.wxml</text> -->
- <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">
- </tabs>
- <view style="height: 40px;"></view>
- <block wx:for-items="{{lists}}" wx:for-item="item" wx:key="item.id">
- <view class="list" data-id="{{item.id}}">
- <view class="list-img">
- <image class="video-img" mode="scaleToFill" src="{{item.image}}"></image>
- </view>
- <view class="list-detail">
- <view class="list-title"><text>{{item.title}}</text></view>
- <view class="list-tag">
- <view class="state">{{item.state}}</view>
- <view class="join"><text class="list-num">{{item.num}}</text>人报名</view>
- </view>
- <view class="list-info"><text>{{item.location}}</text>|<text>{{item.starttime}}</text></view>
- </view>
- </view>
- </block>
在meeting文件夹下list.wxss中加入以下代码,如下:
- /* pages/meeting/list/list.wxss */
- .list{
- display: flex;
- align-items: center;
- border-bottom: 3px solid lightgray;
- }
- .list-img{
- padding: 0 10px;
- }
- .video-img{
- height: 80px;
- width: 80px;
- }
- .list-title{
- font-weight: 700;
- margin: 3px 0;
- }
- .list-tag{
- display: flex;
- align-items: center;
- }
- .state{
- border: 2px solid lightblue;
- padding: 1px 1px;
- color: lightblue;
- margin: 0 15px 2px 0;
- border-radius: 10px;
- }
- .join{
- color: lightgray;
- }
- .list-num{
- color: red;
- font-weight: 700;
- }
- .list-info{
- color: lightgray;
- font-size: 12px;
- }
- .section bottom-line{
- display: flex;
- justify-content:center;
- }
用于接收数据
meeting文件夹下list.js中代码如下(含页面数据代码):
- // pages/meeting/list/list.js
- Page({
-
- /**
- * 页面的初始数据
- */
- data: {
- tabs:['会议中','已完成','已取消','全部会议'],
- lists:[
- {
- 'id': '1',
- 'image': '/static/persons/1.jpg',
- 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
- 'num':'304',
- 'state':'进行中',
- 'time': '10月09日 17:59',
- 'address': '深圳市·南山区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/2.jpg',
- 'title': 'AI WORLD 2016世界人工智能大会',
- 'num':'380',
- 'state':'已结束',
- 'time': '10月09日 17:39',
- 'address': '北京市·朝阳区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/3.jpg',
- 'title': 'H100太空商业大会',
- 'num':'500',
- 'state':'进行中',
- 'time': '10月09日 17:31',
- 'address': '大连市'
- },
- {
- 'id': '1',
- 'image': '/static/persons/4.jpg',
- 'title': '报名年度盛事,大咖云集!2016凤凰国际论坛邀您“与世界对话”',
- 'num':'150',
- 'state':'已结束',
- 'time': '10月09日 17:21',
- 'address': '北京市·朝阳区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/5.jpg',
- 'title': '新质生活 · 品质时代 2016消费升级创新大会',
- 'num':'217',
- 'state':'进行中',
- 'time': '10月09日 16:59',
- 'address': '北京市·朝阳区'
- }
- ],
- lists1: [
- {
- 'id': '1',
- 'image': '/static/persons/1.jpg',
- 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
- 'num':'304',
- 'state':'进行中',
- 'time': '10月09日 17:59',
- 'address': '深圳市·南山区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/2.jpg',
- 'title': 'AI WORLD 2016世界人工智能大会',
- 'num':'380',
- 'state':'已结束',
- 'time': '10月09日 17:39',
- 'address': '北京市·朝阳区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/3.jpg',
- 'title': 'H100太空商业大会',
- 'num':'500',
- 'state':'进行中',
- 'time': '10月09日 17:31',
- 'address': '大连市'
- }
- ],
- lists2: [
- {
- 'id': '1',
- 'image': '/static/persons/1.jpg',
- 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
- 'num':'304',
- 'state':'进行中',
- 'time': '10月09日 17:59',
- 'address': '深圳市·南山区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/2.jpg',
- 'title': 'AI WORLD 2016世界人工智能大会',
- 'num':'380',
- 'state':'已结束',
- 'time': '10月09日 17:39',
- 'address': '北京市·朝阳区'
- }
- ],
- lists3: [
- {
- 'id': '1',
- 'image': '/static/persons/1.jpg',
- 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
- 'num':'304',
- 'state':'进行中',
- 'time': '10月09日 17:59',
- 'address': '深圳市·南山区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/2.jpg',
- 'title': 'AI WORLD 2016世界人工智能大会',
- 'num':'380',
- 'state':'已结束',
- 'time': '10月09日 17:39',
- 'address': '北京市·朝阳区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/3.jpg',
- 'title': 'H100太空商业大会',
- 'num':'500',
- 'state':'进行中',
- 'time': '10月09日 17:31',
- 'address': '大连市'
- },
- {
- 'id': '1',
- 'image': '/static/persons/4.jpg',
- 'title': '报名年度盛事,大咖云集!2016凤凰国际论坛邀您“与世界对话”',
- 'num':'150',
- 'state':'已结束',
- 'time': '10月09日 17:21',
- 'address': '北京市·朝阳区'
- },
- {
- 'id': '1',
- 'image': '/static/persons/5.jpg',
- 'title': '新质生活 · 品质时代 2016消费升级创新大会',
- 'num':'217',
- 'state':'进行中',
- 'time': '10月09日 16:59',
- 'address': '北京市·朝阳区'
- }
- ]
- },
- tabsItemChange(){
- debugger;
- let tolists;
- if(e.detail.index==1){
- tolists = this.data.lists1;
- }else if(e.detail.index==2){
- tolists = this.data.lists2;
- }else{
- tolists = this.data.lists3;
- }
- this.setData({
- lists: tolists
- })
- },
-
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
-
- },
-
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() {
-
- },
-
- /**
- * 生命周期函数--监听页面显示
- */
- onShow() {
-
- },
-
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide() {
-
- },
-
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload() {
-
- },
-
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh() {
-
- },
-
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom() {
-
- },
-
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() {
-
- }
- })
list.json中代码如下:
- {
- "usingComponents": {
- "tabs": "/components/tabs/tabs"
- }
- }
效果图:
index.wxml:
- <!--pages/ucenter/index/index.wxml-->
- <!-- <text>pages/ucenter/index/index.wxml</text> -->
- <!--pages/ucenter/index/index.wxml-->
- <!-- <text>pages/ucenter/index/index.wxml</text> -->
- <view class="user">
- <image class="user-img" src="/static/persons/CSDN.jpg"></image>
- <text class="user-name">Ar.小白</text>
- <text class="user-oper">修改</text>
- </view>
- <view class="info">
- <view class="item1">
- <image class="item-icon" src="/static/tabBar/sdk.png"></image>
- <view class="item-title">我主持的会议</view>
- <view class="item-num">1</view>
- <view class="item-oper">></view>
- </view>
- <view class="item2">
- <image class="item-icon" src="/static/tabBar/sdk.png"></image>
- <view class="item-title">我参与的会议</view>
- <view class="item-num">10</view>
- <view class="item-oper">></view>
- </view>
- </view>
- <view class="info">
- <view class="item1">
- <image class="item-icon" src="/static/tabBar/sdk.png"></image>
- <view class="item-title">我发布的投票</view>
- <view class="item-num">1</view>
- <view class="item-oper">></view>
- </view>
- <view class="item2">
- <image class="item-icon" src="/static/tabBar/sdk.png"></image>
- <view class="item-title">我参与的投票</view>
- <view class="item-num">10</view>
- <view class="item-oper">></view>
- </view>
- </view>
- <view class="info">
- <view class="item1">
- <image class="item-icon" src="/static/tabBar/template.png"></image>
- <view class="item-title">消息</view>
- </view>
- <view class="item2">
- <image class="item-icon" src="/static/tabBar/component.png"></image>
- <view class="item-title">设置</view>
- </view>
- </view>
index.wxss:
- /* pages/ucenter/index/index.wxss */
- .user{
- display: flex;
- align-items: center;
- border-bottom: 6px solid rgb(238, 235, 235);
- }
- .user-img{
- width: 65px;
- height: 65px;
- margin: 10px;
- }
- .user-name{
- font-weight: 700;
- margin: 0 250rpx 0 50rpx;
- }
- .user-oper{
- color: lightgray;
- }
- .info{
-
- }
- .item1,.item2{
- padding: 5px;
- display: flex;
- align-items: center;
- }
- .item1{
- border-bottom: 2px solid rgb(238, 235, 235);
- }
- .item2{
- border-bottom: 6px solid rgb(238, 235, 235);
- }
- .item-icon{
- width: 40px;
- height: 40px;
- }
- .item-title{
- width:500rpx;
- }
- .item-num{
- width:60rpx;
- }
- .item-oper{
- color: rgb(221, 216, 216);
- }
效果图: