• 微信小程序进阶——会议OA其他界面


    一、自定义tabs组件应用


    文档参考如下:

    自定义组件 | 微信开放文档
    微信开发者平台文档

    https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/

    1.1 创建自定义组件

    首先新建一个components文件夹,然后在components文件夹下面新建一个tabs文件夹,再在tabs文件夹下新建名为tabs的Component,目录如下:

     

     1.1.2 工具检查报错解决

    如果你在创建自定义组件的时候出现以下问题,这是新版本微信开发者工具特带的检查效果(window7所使用的旧版本开发工具不会报此错误),

    可以将以下代码复制到project.config.json中的setting中即可

    1.     "ignoreDevUnusedFiles": false,
    2.     "ignoreUploadUnusedFiles": false,
    1.1.3 编写组件模板

    紧接着同时,还要在 wxml 文件中编写组件模板,在 wxss 文件中加入组件样式,它们的写法与页面的写法类似。即把以下代码加入tabs.wxml中,代码如下:

    1. <view class="inner">
    2. {{innerText}}
    3. </view>
    4. <slot></slot>
    1.1.3 定义组件模板属性

    加入了之后我们需要到tabs.js文件中定义innerText属性值,在tabs.js中组件的属性列表代码块下properties加入以下代码,如下:

    1. // 这里定义了innerText属性,属性值可以在组件使用时指定
    2. innerText: {
    3. type: String,
    4. value: 'default value',
    5. }
    1.1.4 加入组件样式

    最后在tabs.wxss中加入样式代码即可,wxss文件内代码如下:

    1. .inner {
    2. color: red;
    3. }

    2.使用自定义组件


    使用已注册的自定义组件前,首先要在页面的 json 文件中进行引用声明。此时需要提供每个自定义组件的标签名和对应的自定义组件文件路径

    1. {
    2.   "usingComponents": {
    3.     "tabs": "/components/tabs/tabs"
    4.   }
    5. }


     这样,在页面的 wxml 中就可以像使用基础组件一样使用自定义组件。节点名即自定义组件的标签名,节点属性即传递给组件的属性值。

    <tabs></tabs>

    效果图:

     

    3.自定义组件传值

     自定义组件传值需要注意的一个点就是不能以驼峰命名如果遇见是大写的字母要变成小写并在中间加一个“-”,例如我们的自定义组件属性值“innerText”,就要变成“inner-text”。

    <tabs inner-text="ar.小白"></tabs>

    效果图:



     

     

    二、其他界面的布局

    2.1 会议管理主页布局

    2.1.1 编写组件模板

    在meeting文件夹下list.wxml中加入以下代码:

    1. <!--pages/meeting/list/list.wxml-->
    2. <!-- <text>pages/meeting/list/list.wxml</text> -->
    3. <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">
    4. </tabs>
    5. <view style="height: 40px;"></view>
    6. <block wx:for-items="{{lists}}" wx:for-item="item" wx:key="item.id">
    7. <view class="list" data-id="{{item.id}}">
    8. <view class="list-img">
    9. <image class="video-img" mode="scaleToFill" src="{{item.image}}"></image>
    10. </view>
    11. <view class="list-detail">
    12. <view class="list-title"><text>{{item.title}}</text></view>
    13. <view class="list-tag">
    14. <view class="state">{{item.state}}</view>
    15. <view class="join"><text class="list-num">{{item.num}}</text>人报名</view>
    16. </view>
    17. <view class="list-info"><text>{{item.location}}</text>|<text>{{item.starttime}}</text></view>
    18. </view>
    19. </view>
    20. </block>
    2.1.2 完成样式设计

    在meeting文件夹下list.wxss中加入以下代码,如下:

    1. /* pages/meeting/list/list.wxss */
    2. .list{
    3. display: flex;
    4. align-items: center;
    5. border-bottom: 3px solid lightgray;
    6. }
    7. .list-img{
    8. padding: 0 10px;
    9. }
    10. .video-img{
    11. height: 80px;
    12. width: 80px;
    13. }
    14. .list-title{
    15. font-weight: 700;
    16. margin: 3px 0;
    17. }
    18. .list-tag{
    19. display: flex;
    20. align-items: center;
    21. }
    22. .state{
    23. border: 2px solid lightblue;
    24. padding: 1px 1px;
    25. color: lightblue;
    26. margin: 0 15px 2px 0;
    27. border-radius: 10px;
    28. }
    29. .join{
    30. color: lightgray;
    31. }
    32. .list-num{
    33. color: red;
    34. font-weight: 700;
    35. }
    36. .list-info{
    37. color: lightgray;
    38. font-size: 12px;
    39. }
    40. .section bottom-line{
    41. display: flex;
    42. justify-content:center;
    43. }

     

    2.1.3 定义组件属性

    用于接收数据

    meeting文件夹下list.js中代码如下(含页面数据代码):

    1. // pages/meeting/list/list.js
    2. Page({
    3. /**
    4. * 页面的初始数据
    5. */
    6. data: {
    7. tabs:['会议中','已完成','已取消','全部会议'],
    8. lists:[
    9. {
    10. 'id': '1',
    11. 'image': '/static/persons/1.jpg',
    12. 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
    13. 'num':'304',
    14. 'state':'进行中',
    15. 'time': '10月09日 17:59',
    16. 'address': '深圳市·南山区'
    17. },
    18. {
    19. 'id': '1',
    20. 'image': '/static/persons/2.jpg',
    21. 'title': 'AI WORLD 2016世界人工智能大会',
    22. 'num':'380',
    23. 'state':'已结束',
    24. 'time': '10月09日 17:39',
    25. 'address': '北京市·朝阳区'
    26. },
    27. {
    28. 'id': '1',
    29. 'image': '/static/persons/3.jpg',
    30. 'title': 'H100太空商业大会',
    31. 'num':'500',
    32. 'state':'进行中',
    33. 'time': '10月09日 17:31',
    34. 'address': '大连市'
    35. },
    36. {
    37. 'id': '1',
    38. 'image': '/static/persons/4.jpg',
    39. 'title': '报名年度盛事,大咖云集!2016凤凰国际论坛邀您“与世界对话”',
    40. 'num':'150',
    41. 'state':'已结束',
    42. 'time': '10月09日 17:21',
    43. 'address': '北京市·朝阳区'
    44. },
    45. {
    46. 'id': '1',
    47. 'image': '/static/persons/5.jpg',
    48. 'title': '新质生活 · 品质时代 2016消费升级创新大会',
    49. 'num':'217',
    50. 'state':'进行中',
    51. 'time': '10月09日 16:59',
    52. 'address': '北京市·朝阳区'
    53. }
    54. ],
    55. lists1: [
    56. {
    57. 'id': '1',
    58. 'image': '/static/persons/1.jpg',
    59. 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
    60. 'num':'304',
    61. 'state':'进行中',
    62. 'time': '10月09日 17:59',
    63. 'address': '深圳市·南山区'
    64. },
    65. {
    66. 'id': '1',
    67. 'image': '/static/persons/2.jpg',
    68. 'title': 'AI WORLD 2016世界人工智能大会',
    69. 'num':'380',
    70. 'state':'已结束',
    71. 'time': '10月09日 17:39',
    72. 'address': '北京市·朝阳区'
    73. },
    74. {
    75. 'id': '1',
    76. 'image': '/static/persons/3.jpg',
    77. 'title': 'H100太空商业大会',
    78. 'num':'500',
    79. 'state':'进行中',
    80. 'time': '10月09日 17:31',
    81. 'address': '大连市'
    82. }
    83. ],
    84. lists2: [
    85. {
    86. 'id': '1',
    87. 'image': '/static/persons/1.jpg',
    88. 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
    89. 'num':'304',
    90. 'state':'进行中',
    91. 'time': '10月09日 17:59',
    92. 'address': '深圳市·南山区'
    93. },
    94. {
    95. 'id': '1',
    96. 'image': '/static/persons/2.jpg',
    97. 'title': 'AI WORLD 2016世界人工智能大会',
    98. 'num':'380',
    99. 'state':'已结束',
    100. 'time': '10月09日 17:39',
    101. 'address': '北京市·朝阳区'
    102. }
    103. ],
    104. lists3: [
    105. {
    106. 'id': '1',
    107. 'image': '/static/persons/1.jpg',
    108. 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
    109. 'num':'304',
    110. 'state':'进行中',
    111. 'time': '10月09日 17:59',
    112. 'address': '深圳市·南山区'
    113. },
    114. {
    115. 'id': '1',
    116. 'image': '/static/persons/2.jpg',
    117. 'title': 'AI WORLD 2016世界人工智能大会',
    118. 'num':'380',
    119. 'state':'已结束',
    120. 'time': '10月09日 17:39',
    121. 'address': '北京市·朝阳区'
    122. },
    123. {
    124. 'id': '1',
    125. 'image': '/static/persons/3.jpg',
    126. 'title': 'H100太空商业大会',
    127. 'num':'500',
    128. 'state':'进行中',
    129. 'time': '10月09日 17:31',
    130. 'address': '大连市'
    131. },
    132. {
    133. 'id': '1',
    134. 'image': '/static/persons/4.jpg',
    135. 'title': '报名年度盛事,大咖云集!2016凤凰国际论坛邀您“与世界对话”',
    136. 'num':'150',
    137. 'state':'已结束',
    138. 'time': '10月09日 17:21',
    139. 'address': '北京市·朝阳区'
    140. },
    141. {
    142. 'id': '1',
    143. 'image': '/static/persons/5.jpg',
    144. 'title': '新质生活 · 品质时代 2016消费升级创新大会',
    145. 'num':'217',
    146. 'state':'进行中',
    147. 'time': '10月09日 16:59',
    148. 'address': '北京市·朝阳区'
    149. }
    150. ]
    151. },
    152. tabsItemChange(){
    153. debugger;
    154. let tolists;
    155. if(e.detail.index==1){
    156. tolists = this.data.lists1;
    157. }else if(e.detail.index==2){
    158. tolists = this.data.lists2;
    159. }else{
    160. tolists = this.data.lists3;
    161. }
    162. this.setData({
    163. lists: tolists
    164. })
    165. },
    166. /**
    167. * 生命周期函数--监听页面加载
    168. */
    169. onLoad(options) {
    170. },
    171. /**
    172. * 生命周期函数--监听页面初次渲染完成
    173. */
    174. onReady() {
    175. },
    176. /**
    177. * 生命周期函数--监听页面显示
    178. */
    179. onShow() {
    180. },
    181. /**
    182. * 生命周期函数--监听页面隐藏
    183. */
    184. onHide() {
    185. },
    186. /**
    187. * 生命周期函数--监听页面卸载
    188. */
    189. onUnload() {
    190. },
    191. /**
    192. * 页面相关事件处理函数--监听用户下拉动作
    193. */
    194. onPullDownRefresh() {
    195. },
    196. /**
    197. * 页面上拉触底事件的处理函数
    198. */
    199. onReachBottom() {
    200. },
    201. /**
    202. * 用户点击右上角分享
    203. */
    204. onShareAppMessage() {
    205. }
    206. })
    2.1.4 引用声明

    list.json中代码如下:

    1. {
    2. "usingComponents": {
    3. "tabs": "/components/tabs/tabs"
    4. }
    5. }

    效果图:

     

    2.2 个人中心布局

    2.2.1 页面源码

    index.wxml:

    1. <!--pages/ucenter/index/index.wxml-->
    2. <!-- <text>pages/ucenter/index/index.wxml</text> -->
    3. <!--pages/ucenter/index/index.wxml-->
    4. <!-- <text>pages/ucenter/index/index.wxml</text> -->
    5. <view class="user">
    6. <image class="user-img" src="/static/persons/CSDN.jpg"></image>
    7. <text class="user-name">Ar.小白</text>
    8. <text class="user-oper">修改</text>
    9. </view>
    10. <view class="info">
    11. <view class="item1">
    12. <image class="item-icon" src="/static/tabBar/sdk.png"></image>
    13. <view class="item-title">我主持的会议</view>
    14. <view class="item-num">1</view>
    15. <view class="item-oper"></view>
    16. </view>
    17. <view class="item2">
    18. <image class="item-icon" src="/static/tabBar/sdk.png"></image>
    19. <view class="item-title">我参与的会议</view>
    20. <view class="item-num">10</view>
    21. <view class="item-oper"></view>
    22. </view>
    23. </view>
    24. <view class="info">
    25. <view class="item1">
    26. <image class="item-icon" src="/static/tabBar/sdk.png"></image>
    27. <view class="item-title">我发布的投票</view>
    28. <view class="item-num">1</view>
    29. <view class="item-oper"></view>
    30. </view>
    31. <view class="item2">
    32. <image class="item-icon" src="/static/tabBar/sdk.png"></image>
    33. <view class="item-title">我参与的投票</view>
    34. <view class="item-num">10</view>
    35. <view class="item-oper"></view>
    36. </view>
    37. </view>
    38. <view class="info">
    39. <view class="item1">
    40. <image class="item-icon" src="/static/tabBar/template.png"></image>
    41. <view class="item-title">消息</view>
    42. </view>
    43. <view class="item2">
    44. <image class="item-icon" src="/static/tabBar/component.png"></image>
    45. <view class="item-title">设置</view>
    46. </view>
    47. </view>

    index.wxss:

    1. /* pages/ucenter/index/index.wxss */
    2. .user{
    3. display: flex;
    4. align-items: center;
    5. border-bottom: 6px solid rgb(238, 235, 235);
    6. }
    7. .user-img{
    8. width: 65px;
    9. height: 65px;
    10. margin: 10px;
    11. }
    12. .user-name{
    13. font-weight: 700;
    14. margin: 0 250rpx 0 50rpx;
    15. }
    16. .user-oper{
    17. color: lightgray;
    18. }
    19. .info{
    20. }
    21. .item1,.item2{
    22. padding: 5px;
    23. display: flex;
    24. align-items: center;
    25. }
    26. .item1{
    27. border-bottom: 2px solid rgb(238, 235, 235);
    28. }
    29. .item2{
    30. border-bottom: 6px solid rgb(238, 235, 235);
    31. }
    32. .item-icon{
    33. width: 40px;
    34. height: 40px;
    35. }
    36. .item-title{
    37. width:500rpx;
    38. }
    39. .item-num{
    40. width:60rpx;
    41. }
    42. .item-oper{
    43. color: rgb(221, 216, 216);
    44. }

    效果图:

  • 相关阅读:
    国内 11 家通过备案的 AI 大模型产品
    事件总线--EvenBus
    [架构之路-59]:目标系统 - 平台软件 - 基础中间件 - POSIX(可移植操作系统接口)与标准库函数libc
    react中获取dom元素的高度(table铺满屏幕剩余高度)
    前端学习笔记——第三天
    IoC 思想和实现
    jupyter notebook 调整深色背景与单元格宽度与自动换行
    Spring Boot 日志文件 ——打印日志和日志持久化详解
    Unity2021+VS2022调试
    数据资产入表,给企业带来的机遇和挑战
  • 原文地址:https://blog.csdn.net/liaozhixiangjava/article/details/133935923