• 【微信小程序】6天精准入门(第4天:自定义组件及案例界面)附源码


    一、自定义组件

    1、介绍

            从小程序基础库版本 1.6.3 开始,小程序支持简洁的组件化编程。所有自定义组件相关特性都需要基础库版本 1.6.3 或更高。

            开发者可以将页面内的功能模块抽象成自定义组件,以便在不同的页面中重复使用;也可以将复杂的页面拆分成多个低耦合的模块,有助于代码维护。自定义组件在使用时与基础组件非常相似

    2、创建自定义组件

    类似于页面,一个自定义组件由 json wxml wxss js 4个文件组成。要编写一个自定义组件,首先需要在 json 文件中进行自定义组件声明(将 component 字段设为 true 可将这一组文件设为自定义组件):

    1. {
    2. "component": true
    3. }

    同时,还要在 wxml 文件中编写组件模板,在 wxss 文件中加入组件样式,它们的写法与页面的写法类似。具体细节和注意事项参见 组件模板和样式 。

    在项目中创建一个components/tabs文件夹,新建Component文件

    【注意】

    在新的版本里面我们会出现报错,但是在win7的一些旧版本里面是不会出现这些问题的,我们需要在project.config.json文件里面添加以下代码:

    1. "ignoreDevUnusedFiles": false,
    2. "ignoreUploadUnusedFiles": false,

    同时,还要在 wxml 文件中编写组件模板,在 wxss 文件中加入组件样式,它们的写法与页面的写法类似。具体细节和注意事项参见 组件模板和样式 。

    代码示例:

    1. <view class="inner">
    2. {{innerText}}
    3. view>
    4. <slot>slot>
    1. /* 这里的样式只应用于这个自定义组件 */
    2. .inner {
    3. color: red;
    4. }

    注意:在组件wxss中不应使用ID选择器、属性选择器和标签名选择器。

    在自定义组件的 js 文件中,需要使用 Component() 来注册组件,并提供组件的属性定义、内部数据和自定义方法。

    组件的属性值和内部数据将被用于组件 wxml 的渲染,其中,属性值是可由组件外部传入的。更多细节参见 Component构造器 。

    代码示例:

    1. Component({
    2. properties: {
    3. // 这里定义了innerText属性,属性值可以在组件使用时指定
    4. innerText: {
    5. type: String,
    6. value: 'default value',
    7. }
    8. },
    9. data: {
    10. // 这里是一些组件内部数据
    11. someData: {}
    12. },
    13. methods: {
    14. // 这里是一个自定义方法
    15. customMethod: function(){}
    16. }
    17. })

    3、使用自定义组件

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

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

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

    在wxml里面使用自定义标签

    <tabs inner-text='6666'>tabs>

    4、案例---头部导航

    使用自定义组件,实现头部导航的一个效果

    首先我们要在组件里面定义好

    tabs.wxml

    1. <view class="tabs">
    2. <view class="tabs_title">
    3. <view wx:for="{{tabList}}" wx:key="id" class="title_item {{index==tabIndex?'item_active':''}}" bindtap="handleItemTap" data-index="{{index}}">
    4. <view style="margin-bottom:5rpx">{{item}}view>
    5. <view style="width:30px" class="{{index==tabIndex?'item_active1':''}}">view>
    6. view>
    7. view>
    8. <view class="tabs_content">
    9. <slot>slot>
    10. view>
    11. view>

    tabs.js

    1. // components/tabs/tabs.js
    2. Component({
    3. /**
    4. * 组件的属性列表
    5. */
    6. properties: {//定义了组件所需要的属性值
    7. tabList:Object
    8. },
    9. /**
    10. * 组件的初始数据
    11. */
    12. data: {
    13. },
    14. /**
    15. * 组件的方法列表
    16. */
    17. methods: {
    18. }
    19. })

    wxss

    1. /* components/tabs/tabs.wxss */
    2. .inner {
    3. color: red;
    4. }
    5. .tabs {
    6. position: fixed;
    7. top: 0;
    8. width: 100%;
    9. background-color: #fff;
    10. z-index: 99;
    11. border-bottom: 1px solid #efefef;
    12. padding-bottom: 20rpx;
    13. }
    14. .tabs_title {
    15. /* width: 400rpx; */
    16. width: 90%;
    17. display: flex;
    18. font-size: 9pt;
    19. padding: 0 20rpx;
    20. }
    21. .title_item {
    22. color: #999;
    23. padding: 15rpx 0;
    24. display: flex;
    25. flex: 1;
    26. flex-flow: column nowrap;
    27. justify-content: center;
    28. align-items: center;
    29. }
    30. .item_active {
    31. /* color:#ED8137; */
    32. color: #000000;
    33. font-size: 11pt;
    34. font-weight: 800;
    35. }
    36. .item_active1 {
    37. /* color:#ED8137; */
    38. color: #000000;
    39. font-size: 11pt;
    40. font-weight: 800;
    41. border-bottom: 6rpx solid #333;
    42. border-radius: 2px;
    43. }

    我们在指定的页面调用自定义好的组件

    json文件里面设置调用组件

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

    wxml文件里面添加自定义的组件

    1. <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">
    2. tabs>

    在js文件里面设置值

    1. // pages/meeting/list/list.js
    2. Page({
    3. /**
    4. * 页面的初始数据
    5. */
    6. data: {
    7. tabs: ['会议中', '已完成', '已取消', '全部会议']
    8. },
    9. /**
    10. * 生命周期函数--监听页面加载
    11. */
    12. onLoad(options) {
    13. },
    14. /**
    15. * 生命周期函数--监听页面初次渲染完成
    16. */
    17. onReady() {
    18. },
    19. /**
    20. * 生命周期函数--监听页面显示
    21. */
    22. onShow() {
    23. },
    24. /**
    25. * 生命周期函数--监听页面隐藏
    26. */
    27. onHide() {
    28. },
    29. /**
    30. * 生命周期函数--监听页面卸载
    31. */
    32. onUnload() {
    33. },
    34. /**
    35. * 页面相关事件处理函数--监听用户下拉动作
    36. */
    37. onPullDownRefresh() {
    38. },
    39. /**
    40. * 页面上拉触底事件的处理函数
    41. */
    42. onReachBottom() {
    43. },
    44. /**
    45. * 用户点击右上角分享
    46. */
    47. onShareAppMessage() {
    48. }
    49. })

    二、案例界面设置

    完成会议、投票、个人中心页面的设计

    1、会议

    在上面已经拥有的基础上进行一个点击数据的展示

    在自定义组件的js文件里面进行方法的编写

    1. /**
    2. * 组件的方法列表
    3. */
    4. methods: {
    5. handleItemTap(e){
    6. // 获取索引
    7. const {index} = e.currentTarget.dataset;
    8. // 触发 父组件的事件
    9. this.triggerEvent("tabsItemChange",{index})
    10. this.setData({
    11. tabIndex:index
    12. })
    13. }
    14. }

    在会议的页面的wxml文件里面进行页面的编写

    1. <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">
    2. tabs>
    3. <view style="height: 100rpx;">view>
    4. <block wx:for-items="{{lists}}" wx:for-item="item" wx:key="item.id">
    5. <view class="list" data-id="{{item.id}}">
    6. <view class="list-img al-center">
    7. <image class="video-img" mode="scaleToFill" src="{{item.image}}">image>
    8. view>
    9. <view class="list-detail">
    10. <view class="list-title"><text>{{item.title}}text>view>
    11. <view class="list-tag">
    12. <view class="state al-center">{{item.state}}view>
    13. <view class="join al-center"><text class="list-num">{{item.num}}text>人报名view>
    14. view>
    15. <view class="list-info"><text>{{item.address}}text>|<text>{{item.time}}text>view>
    16. view>
    17. view>
    18. block>
    19. <view class="section">
    20. <text>到底啦text>
    21. view>

    在js文件的里面模拟假的数据

    1. /**
    2. * 页面的初始数据
    3. */
    4. data: {
    5. tabs: ['会议中', '已完成', '已取消', '全部会议'],
    6. lists: [
    7. {
    8. 'id': '1',
    9. 'image': '/static/persons/1.jpg',
    10. 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
    11. 'num': '304',
    12. 'state': '进行中',
    13. 'time': '10月09日 17:59',
    14. 'address': '深圳市·南山区'
    15. },
    16. {
    17. 'id': '1',
    18. 'image': '/static/persons/2.jpg',
    19. 'title': 'AI WORLD 2016世界人工智能大会',
    20. 'num': '380',
    21. 'state': '进行中',
    22. 'time': '10月09日 17:39',
    23. 'address': '北京市·朝阳区'
    24. },
    25. {
    26. 'id': '1',
    27. 'image': '/static/persons/3.jpg',
    28. 'title': 'H100太空商业大会',
    29. 'num': '500',
    30. 'state': '进行中',
    31. 'time': '10月09日 17:31',
    32. 'address': '大连市'
    33. },
    34. {
    35. 'id': '1',
    36. 'image': '/static/persons/4.jpg',
    37. 'title': '报名年度盛事,大咖云集!2016凤凰国际论坛邀您“与世界对话”',
    38. 'num': '150',
    39. 'state': '进行中',
    40. 'time': '10月09日 17:21',
    41. 'address': '北京市·朝阳区'
    42. },
    43. {
    44. 'id': '1',
    45. 'image': '/static/persons/5.jpg',
    46. 'title': '新质生活 · 品质时代 2016消费升级创新大会',
    47. 'num': '217',
    48. 'state': '进行中',
    49. 'time': '10月09日 16:59',
    50. 'address': '北京市·朝阳区'
    51. }
    52. ],
    53. lists1: [
    54. {
    55. 'id': '1',
    56. 'image': '/static/persons/1.jpg',
    57. 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
    58. 'num': '304',
    59. 'state': '已结束',
    60. 'time': '10月09日 17:59',
    61. 'address': '深圳市·南山区'
    62. },
    63. {
    64. 'id': '1',
    65. 'image': '/static/persons/2.jpg',
    66. 'title': 'AI WORLD 2016世界人工智能大会',
    67. 'num': '380',
    68. 'state': '已结束',
    69. 'time': '10月09日 17:39',
    70. 'address': '北京市·朝阳区'
    71. },
    72. {
    73. 'id': '1',
    74. 'image': '/static/persons/3.jpg',
    75. 'title': 'H100太空商业大会',
    76. 'num': '500',
    77. 'state': '已结束',
    78. 'time': '10月09日 17:31',
    79. 'address': '大连市'
    80. }
    81. ],
    82. lists2: [
    83. {
    84. 'id': '1',
    85. 'image': '/static/persons/1.jpg',
    86. 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
    87. 'num': '304',
    88. 'state': '已取消',
    89. 'time': '10月09日 17:59',
    90. 'address': '深圳市·南山区'
    91. },
    92. {
    93. 'id': '1',
    94. 'image': '/static/persons/2.jpg',
    95. 'title': 'AI WORLD 2016世界人工智能大会',
    96. 'num': '380',
    97. 'state': '已取消',
    98. 'time': '10月09日 17:39',
    99. 'address': '北京市·朝阳区'
    100. }
    101. ],
    102. lists3: [
    103. {
    104. 'id': '1',
    105. 'image': '/static/persons/1.jpg',
    106. 'title': '对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】',
    107. 'num': '304',
    108. 'state': '进行中',
    109. 'time': '10月09日 17:59',
    110. 'address': '深圳市·南山区'
    111. },
    112. {
    113. 'id': '1',
    114. 'image': '/static/persons/2.jpg',
    115. 'title': 'AI WORLD 2016世界人工智能大会',
    116. 'num': '380',
    117. 'state': '已结束',
    118. 'time': '10月09日 17:39',
    119. 'address': '北京市·朝阳区'
    120. },
    121. {
    122. 'id': '1',
    123. 'image': '/static/persons/3.jpg',
    124. 'title': 'H100太空商业大会',
    125. 'num': '500',
    126. 'state': '进行中',
    127. 'time': '10月09日 17:31',
    128. 'address': '大连市'
    129. },
    130. {
    131. 'id': '1',
    132. 'image': '/static/persons/4.jpg',
    133. 'title': '报名年度盛事,大咖云集!2016凤凰国际论坛邀您“与世界对话”',
    134. 'num': '150',
    135. 'state': '已结束',
    136. 'time': '10月09日 17:21',
    137. 'address': '北京市·朝阳区'
    138. },
    139. {
    140. 'id': '1',
    141. 'image': '/static/persons/5.jpg',
    142. 'title': '新质生活 · 品质时代 2016消费升级创新大会',
    143. 'num': '217',
    144. 'state': '进行中',
    145. 'time': '10月09日 16:59',
    146. 'address': '北京市·朝阳区'
    147. }
    148. ]
    149. }

    在下面编写一个方法,用来获取对应的数据

    1. tabsItemChange(e) {
    2. console.log(e)
    3. let tolists;
    4. if (e.detail.index == 0) {
    5. tolists = this.data.lists;
    6. } else if (e.detail.index == 1) {
    7. tolists = this.data.lists1;
    8. } else if (e.detail.index == 2) {
    9. tolists = this.data.lists2;
    10. } else {
    11. tolists = this.data.lists3;
    12. }
    13. this.setData({
    14. lists: tolists
    15. })
    16. }

    完整代码

    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(e) {
    153. console.log(e)
    154. let tolists;
    155. if (e.detail.index == 0) {
    156. tolists = this.data.lists;
    157. } else if (e.detail.index == 1) {
    158. tolists = this.data.lists1;
    159. } else if (e.detail.index == 2) {
    160. tolists = this.data.lists2;
    161. } else {
    162. tolists = this.data.lists3;
    163. }
    164. this.setData({
    165. lists: tolists
    166. })
    167. },
    168. /**
    169. * 生命周期函数--监听页面加载
    170. */
    171. onLoad(options) {
    172. },
    173. /**
    174. * 生命周期函数--监听页面初次渲染完成
    175. */
    176. onReady() {
    177. },
    178. /**
    179. * 生命周期函数--监听页面显示
    180. */
    181. onShow() {
    182. },
    183. /**
    184. * 生命周期函数--监听页面隐藏
    185. */
    186. onHide() {
    187. },
    188. /**
    189. * 生命周期函数--监听页面卸载
    190. */
    191. onUnload() {
    192. },
    193. /**
    194. * 页面相关事件处理函数--监听用户下拉动作
    195. */
    196. onPullDownRefresh() {
    197. },
    198. /**
    199. * 页面上拉触底事件的处理函数
    200. */
    201. onReachBottom() {
    202. },
    203. /**
    204. * 用户点击右上角分享
    205. */
    206. onShareAppMessage() {
    207. }
    208. })

    2、投票

    绑定自定义组件

    json

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

    wxml

    1. <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">
    2. <view class="search-container">
    3. <input class="search-input" bindinput="searchInputOne" placeholder="投票标题 🔍" />
    4. <input class="search-input" bindinput="searchInputTwo" placeholder="投票选项 🔍" />
    5. view>
    6. tabs>
    7. <view style="background-color: #aaa;">view>
    8. <view>
    9. <block wx:for-items="{{lists}}" wx:for-item="item" wx:key="item.id">
    10. <view class="list" data-id="{{item.id}}">
    11. <view class="list-img al-center">
    12. <image class="video-img" mode="scaleToFill" src="{{item.image}}">image>
    13. view>
    14. <view class="list-detail">
    15. <view class="list-title"><text><text style="margin-right: 13rpx;"> 发 起 人text> : {{item.name}}text>view>
    16. <view class="list-title"><text>会议名称 : {{item.title}}text>view>
    17. <view class="list-title"><text>投票标题 : [ {{item.vote}} ]text>view>
    18. <view class="list-tag">
    19. <view class="state al-center">{{item.state}}view>
    20. <view class="join al-center"><text class="list-count">{{item.count}}text>人参与投票view>
    21. view>
    22. <view class="list-info"><text style="font-weight: bold;">地址:text><text>{{item.address}}text> <text style="float: right;">{{item.time}}text> view>
    23. <view> <button class="btn">参与button>view>
    24. view>
    25. view>
    26. block>
    27. <view class="section bottom-line">
    28. <text>到底啦text>
    29. view>
    30. view>

    js

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

    wxss样式

    1. /* pages/vote/list/list.wxss */
    2. .search-container {
    3. display: flex;
    4. justify-content: space-between;
    5. align-items: center;
    6. padding: 10px;
    7. background-color: #ffffff;
    8. border: cornsilk;
    9. }
    10. .search-input {
    11. width: 45%;
    12. padding: 8px;
    13. border-radius: 20px;
    14. border: 1px solid rgb(255, 255, 255);
    15. font-size: 14px;
    16. transition: border-color 0.3s;
    17. border: cornsilk;
    18. }
    19. .search-input:focus {
    20. outline: none;
    21. border-color: #51a7f9;
    22. }
    23. .search-input::placeholder {
    24. color: #999;
    25. }
    26. .search-input::-webkit-input-placeholder {
    27. color: #999;
    28. }
    29. .search-input::-moz-placeholder {
    30. color: #999;
    31. }
    32. .search-input:-ms-input-placeholder {
    33. color: #999;
    34. }
    35. /* .search-container {
    36. display: flex;
    37. justify-content: space-between;
    38. align-items: center;
    39. padding: 10px;
    40. background-color: #f0f0f0;
    41. }
    42. .search-input {
    43. width: 45%;
    44. padding: 8px;
    45. border-radius: 4px;
    46. border: 1px solid #ccc;
    47. font-size: 14px;
    48. } */
    49. .list {
    50. display: flex;
    51. flex-direction: row;
    52. width: 100%;
    53. padding: 0 20rpx 0 0;
    54. background-color: seashell;
    55. border-bottom: 1px solid #cecece;
    56. margin-bottom: 5rpx;
    57. height: 350rpx;
    58. }
    59. .list-img {
    60. display: flex;
    61. margin: 10rpx 10rpx;
    62. width: 160rpx;
    63. height: 250rpx;
    64. justify-content: center;
    65. align-items: center;
    66. flex-direction: column;
    67. }
    68. .list-img .video-img {
    69. width: 140rpx;
    70. height: 160rpx;
    71. border-radius: 6px;
    72. }
    73. .list-detail {
    74. margin: 10rpx 10rpx;
    75. display: flex;
    76. flex-direction: column;
    77. width: 600rpx;
    78. height: 300rpx;
    79. }
    80. .list-title text {
    81. font-size: 9pt;
    82. color: #333;
    83. font-weight: bold;
    84. }
    85. .list-detail {
    86. display: flex;
    87. height: 100rpx;
    88. }
    89. .list-tag {
    90. display: flex;
    91. }
    92. .state {
    93. font-size: 9pt;
    94. color: blue;
    95. width: 120rpx;
    96. height: 40rpx;
    97. border: 1px solid blue;
    98. border-radius: 2px;
    99. margin: 10rpx 0rpx;
    100. display: flex;
    101. justify-content: center;
    102. align-items: center;
    103. }
    104. .join {
    105. font-size: 11pt;
    106. color: #bbb;
    107. margin-left: 20rpx;
    108. display: flex;
    109. justify-content: center;
    110. align-items: center;
    111. }
    112. .list-count {
    113. margin-right: 10rpx;
    114. font-size: 11pt;
    115. color: red;
    116. }
    117. .list-info {
    118. font-size: 9pt;
    119. color: #bbb;
    120. }
    121. .btn {
    122. /* width: 10rpx;
    123. height: 40rpx;
    124. background-color: #3388ff;
    125. color: #fff;
    126. text-align: center;
    127. font-size: 16rpx;
    128. display: flex;
    129. justify-content: center;
    130. align-items: center; */
    131. background-color: #3388ff;
    132. color: #fff;
    133. border-radius: 4rpx;
    134. font-size: 16rpx;
    135. padding: 10rpx 20rpx;
    136. /* background-color: #3388ff;
    137. color: #fff;
    138. border-color: #3388ff; */
    139. /* width: 100rpx;
    140. height: 40rpx;
    141. border: 1rpx solid #3388ff;
    142. border-radius: 4rpx;
    143. font-size: 16rpx;
    144. background-color: #3388ff;
    145. color: #fff;
    146. outline: none;
    147. box-shadow: 0 0 5rpx #3388ff; */
    148. /* width: 60rpx;
    149. height: 30rpx;
    150. border-radius: 4rpx;
    151. font-size: 16rpx; */
    152. /* width: 40rpx;
    153. height: 40rpx;
    154. background-color: transparent;
    155. border: none;
    156. font-size: 24rpx;
    157. color: #666; */
    158. }
    159. .bottom-line {
    160. display: flex;
    161. height: 60rpx;
    162. justify-content: center;
    163. align-items: center;
    164. background-color: #f3f3f3;
    165. }
    166. .bottom-line text {
    167. font-size: 9pt;
    168. color: #666;
    169. }

    3、个人中心

    wxml

    1. <view class="user">
    2. <image class="user-img" src="/static/persons/1.jpg">image>
    3. <view class="user-name">无法自律的人view>
    4. <text class="user-state">状态:😊text>
    5. <text class="user-up">修改>text>
    6. view>
    7. <view class="cells">
    8. <view class="cell-items">
    9. <image src="/static/tabBar/coding-active.png" class="cell-items-icon">image>
    10. <text class="cell-items-title">我主持的会议text>
    11. <text class="cell-items-num">99+text>
    12. <text class="cell-items-detail">🆗text>
    13. view>
    14. <view style="height: 5rpx;background-color: rgba(135, 206, 250, 0.075);">view>
    15. <view class="cell-items">
    16. <image src="/static/tabBar/sdk.png" class="cell-items-icon">image>
    17. <text class="cell-items-title">我参与的会议text>
    18. <text class="cell-items-num">99+text>
    19. <text class="cell-items-detail">text>
    20. view>
    21. view>
    22. <view style="height: 27rpx;background-color: rgba(135, 206, 250, 0.075);">view>
    23. <view class="cells">
    24. <view class="cell-items">
    25. <image src="/static/tabBar/sdk.png" class="cell-items-icon">image>
    26. <text class="cell-items-title">我发布的投票text>
    27. <text class="cell-items-num">89text>
    28. <text class="cell-items-detail">👍text>
    29. view>
    30. <view style="height: 5rpx;background-color: rgba(135, 206, 250, 0.075);">view>
    31. <view class="cell-items">
    32. <image src="/static/tabBar/coding-active.png" class="cell-items-icon">image>
    33. <text class="cell-items-title">我参与的投票text>
    34. <text class="cell-items-num">8text>
    35. <text class="cell-items-detail">text>
    36. view>
    37. view>
    38. <view style="height: 27rpx;background-color: rgba(135, 206, 250, 0.075);">view>
    39. <view class="cells">
    40. <view class="cell-items">
    41. <image src="/static/tabBar/template.png" class="cell-items-icon">image>
    42. <text class="cell-items-title">信息text>
    43. <text class="cell-items-ion">text>
    44. view>
    45. <view style="height: 5rpx;background-color: rgba(135, 206, 250, 0.075);">view>
    46. <view class="cell-items">
    47. <image src="/static/tabBar/component.png" class="cell-items-icon">image>
    48. <text class="cell-items-title">设置text>
    49. <text class="cell-items-ion">text>
    50. view>
    51. view>

    wxss

    1. /* pages/ucenter/index/index.wxss */
    2. Page {
    3. background-color: rgba(135, 206, 250, 0.075);
    4. }
    5. .user {
    6. display: flex;
    7. width: 100%;
    8. align-items: center;
    9. background-color: white;
    10. margin-bottom: 28rpx;
    11. }
    12. .user-img {
    13. height: 170rpx;
    14. width: 170rpx;
    15. margin: 30rpx;
    16. border: 1px solid #cdd7ee;
    17. border-radius: 6px;
    18. }
    19. .user-name {
    20. width: 380rpx;
    21. margin-left: 20rpx;
    22. font-weight: 550;
    23. }
    24. .user-state {
    25. color: rgb(136, 133, 133);
    26. }
    27. .user-up {
    28. color: rgb(136, 133, 133);
    29. }
    30. .cells {
    31. background-color: white;
    32. }
    33. .cell-items {
    34. display: flex;
    35. align-items: center;
    36. height: 110rpx;
    37. }
    38. .cell-items-title {
    39. width: 290rpx;
    40. }
    41. .cell-items-icon {
    42. width: 50rpx;
    43. height: 50rpx;
    44. margin: 20rpx;
    45. }
    46. .cell-items-num {
    47. padding-left: 30rpx;
    48. margin-left: 200rpx;
    49. width: 70rpx;
    50. }
    51. .cell-items-ion {
    52. margin-left: 295rpx;
    53. }

  • 相关阅读:
    2023第十二届中国智能产业高峰论坛
    C语言——数组详解
    java基础运算符 之 赋值运算符
    git奇怪报错
    Redis篇----第六篇
    群狼调研(长沙神秘顾客检查)|销售案场神秘顾客评估指标
    动态规划——最长上升子序列模型
    XUST——Kcsoftware Part3 题目题解
    docker使用bind9实现域名解析
    1688关键字搜索商品
  • 原文地址:https://blog.csdn.net/weixin_74383330/article/details/133897853