• 【微信小程序】自定义组件布局会议OA其他页面(附源码)


    🎉🎉欢迎来到我的CSDN主页!🎉🎉

    🏅我是Java方文山,一个在CSDN分享笔记的博主。📚📚

    🌟推荐给大家我的专栏《微信小程序开发实战》。🎯🎯

    👉点击这里,就可以查看我的主页啦!👇👇

    Java方文山的个人主页

    🎁如果感觉还不错的话请给我点赞吧!🎁🎁

    💖期待你的加入,一起学习,一起进步!💖💖

    请添加图片描述

    一、自定义组件

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

    1.创建自定义组件

    在微信小程序的根目录下创建一个文件夹名为components,继续在components文件夹下创建文件夹tabs,选中tabs右击新建component输入定义的组件名会创建出json、wxml、wxss、js4个文件。

    首先需要在 json 文件中进行自定义组件声明(将 component 字段设为 true 可将这一组文件设为自定义组件)

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

    同时,还要在 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 的渲染,其中,属性值是可由组件外部传入的。

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

    2.使用自定义组件

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

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

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

    <tabs>tabs>

    效果展示: 

    3.自定义组件传值

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

    <tabs inner-text="自定义组件">tabs>

    效果演示:

    小贴士:

    如果你在创建自定义组件的时候出现以下问题

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

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

    4.注意事项

    一些需要注意的细节

    • 因为 WXML 节点标签名只能是小写字母、中划线和下划线的组合,所以自定义组件的标签名也只能包含这些字符。
    • 自定义组件也是可以引用自定义组件的,引用方法类似于页面引用自定义组件的方式(使用 usingComponents 字段)。
    • 自定义组件和页面所在项目根目录名不能以“wx-”为前缀,否则会报错。
    • 注意,是否在页面文件中使用 usingComponents 会使得页面的 this 对象的原型稍有差异,包括:
    • 使用 usingComponents 页面的原型与不使用时不一致,即 Object.getPrototypeOf(this) 结果不同。
    • 使用 usingComponents 时会多一些方法,如 selectComponent 。
    • 出于性能考虑,使用 usingComponents 时, setData 内容不会被直接深复制,即 this.setData({ field: obj }) 后 this.data.field === obj 。(深复制会在这个值被组件间传递时发生。)
    • 如果页面比较复杂,新增或删除 usingComponents 定义段时建议重新测试一下。

    二、自定义组件案例

    学会了自定义组件的基本概念下面我就带领大家编写一个我们会议OA系统中所需的组件。

    1.创建自定义组件

    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.wxss

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

     tabs.js

    1. var App = getApp();
    2. Component({
    3. /**
    4. * 组件的属性列表
    5. */
    6. properties: {
    7. tabList:Object
    8. },
    9. /**
    10. * 组件的初始数据
    11. */
    12. data: {
    13. tabIndex:0
    14. },
    15. /**
    16. * 组件的方法列表
    17. */
    18. methods: {
    19. handleItemTap(e){
    20. // 获取索引
    21. const {index} = e.currentTarget.dataset;
    22. // 触发 父组件的事件
    23. this.triggerEvent("tabsItemChange",{index})
    24. this.setData({
    25. tabIndex:index
    26. })
    27. }
    28. }
    29. })

     2.使用自定义组件

    list.json

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

    list.js的data中定义属性

     tabs:['会议中','已完成','已取消','全部会议']

    list.wxml

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

    效果展示:

    三、会议管理布局

    现在我们需要考虑的就是点击相应的内容显示相应的数据,我们只需将所点击内容的index值传递,根据index值的不同进行不同数据的遍历即可。

    1.定义所需数据

    js

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

    2.定义内容切换事件 

    1. //定义点击内容显示相应的数据的方法
    2. tabsItemChange(e) {
    3. let tolists;
    4. if (e.detail.index == 1) {
    5. tolists = this.data.lists1;
    6. } else if (e.detail.index == 2) {
    7. tolists = this.data.lists2;
    8. } else {
    9. tolists = this.data.lists3;
    10. }
    11. this.setData({
    12. lists: tolists
    13. })
    14. }

    3.布局会议管理 

    wxml

    1. <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">
    2. tabs>
    3. <view style="height: 60px;">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">
    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">{{item.state}}view>
    13. <view class="join"><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>

    wxss

    1. /* pages/meeting/list/list.wxss */
    2. .section{
    3. color: #aaa;
    4. display: flex;
    5. justify-content: center;
    6. }
    7. .list-info {
    8. color: #aaa;
    9. }
    10. .list-num {
    11. color: #e40909;
    12. font-weight: 700;
    13. }
    14. .join {
    15. padding: 0px 0px 0px 10px;
    16. color: #aaa;
    17. }
    18. .state {
    19. margin: 0px 6px 0px 6px;
    20. border: 1px solid #93b9ff;
    21. color: #93b9ff;
    22. }
    23. .list-tag {
    24. padding: 3px 0px 10px 0px;
    25. display: flex;
    26. align-items: center;
    27. }
    28. .list-title {
    29. display: flex;
    30. justify-content: space-between;
    31. font-size: 11pt;
    32. color: #333;
    33. font-weight: bold;
    34. }
    35. .list-detail {
    36. display: flex;
    37. flex-direction: column;
    38. margin: 0px 0px 0px 15px;
    39. }
    40. .video-img {
    41. width: 80px;
    42. height: 80px;
    43. }
    44. .list {
    45. display: flex;
    46. flex-direction: row;
    47. border-bottom: 1px solid #6b6e74;
    48. padding: 10px;
    49. }
    50. .mobi-text {
    51. font-weight: 700;
    52. padding: 15px;
    53. }
    54. .mobi-icon {
    55. border-left: 5px solid #e40909;
    56. }
    57. .mobi-title {
    58. background-color: rgba(158, 158, 142, 0.678);
    59. margin: 10px 0px 10px 0px;
    60. }
    61. .swiper-item {
    62. height: 300rpx;
    63. width: 100%;
    64. border-radius: 10rpx;
    65. }
    66. .userinfo {
    67. display: flex;
    68. flex-direction: column;
    69. align-items: center;
    70. color: #aaa;
    71. }
    72. .userinfo-avatar {
    73. overflow: hidden;
    74. width: 128rpx;
    75. height: 128rpx;
    76. margin: 20rpx;
    77. border-radius: 50%;
    78. }
    79. .usermotto {
    80. margin-top: 200px;
    81. }

    效果演示:

    四、投票管理布局

    1.顶部导航栏

    我们可以根据自定义组件完成,首先在相应的json文件中引用自定义组件。

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

     随后在js文件中定义我们所需要展示的内容。

      tabs: ['发起投票', '投票进行中', '已结束投票', '全部投票']

     最后直接在wxml中应用即可。

    <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">tabs>

     效果展示:

     2.定义内容切换事件

    我们这里和刚刚的会议管理有些不同,我们刚刚的会议管理是点击不同的菜单显示不同的数据,但是这个的内容可就不是数据了,而是各不相同的组件,所以针对这个事情我们要做一个内容切换事件。

    首先在我们的wxml中定义好每个菜单需要展示的内容并写好hidden样式

    1. <view class="{{componentStatus[0] ? '' : 'hidden'}}">发起投票view>
    2. <view class="{{componentStatus[1] ? '' : 'hidden'}}">投票进行中view>
    3. <view class="{{componentStatus[2] ? '' : 'hidden'}}">已结束投票view>
    4. <view class="{{componentStatus[3] ? '' : 'hidden'}}">全部投票view>
    1. .hidden {
    2. display: none;
    3. }

    在js中定义好属性与事件

     componentStatus: [true,false, false, false]
    1. tabsItemChange(e) {
    2. let index = e.detail.index;
    3. //全部的组件赋值为false
    4. const lists = [false, false, false, false];
    5. //将所点击的组件赋值为true
    6. lists[index] = true;
    7. this.setData({
    8. componentStatus: lists // 更新 data 中的 componentStatus 属性值
    9. });
    10. }

     效果展示:

     3.布局投票管理

    结合以上知识我们只需要将需要展示的内容放入view中即可,我这里只做一个演示。

    wxml

    1. <view class="{{componentStatus[0] ? '' : 'hidden'}}">
    2. <view class="title-view">基本信息view>
    3. <input class="info-title" type="text" placeholder="选择所属会议" />
    4. <input class="info-title" type="text" placeholder="投票标题(最多30个字符)" />
    5. <view class="info-text">
    6. <textarea bindinput="handleInput" placeholder="请输入文本内容">
    7. textarea>
    8. view>
    9. <view class="image-container">
    10. <image src="{{imageUrl}}" mode="aspectFit">image>
    11. view>
    12. <button class="upload-button" bindtap="handleUploadImage">上传图片button>
    13. <view class="title-view">选项设置view>
    14. <input class="info-title" type="text" placeholder="请输入第一项(最多30个字符)" />
    15. <input class="info-title" type="text" placeholder="请输入第二项(最多30个字符)" />
    16. <view class="title-view">时间设置view>
    17. <view class="time">
    18. <text> 开始时间:text>
    19. <picker mode="date" bindchange="handleDateChange1">
    20. <input placeholder="请选择日期" disabled value="{{selectedDate1}}" />
    21. picker>
    22. <picker mode="time" bindchange="handleTimeChange1">
    23. <input placeholder="请选择时间" disabled value="{{selectedTime1}}" />
    24. picker>
    25. view>
    26. <view class="time">
    27. <text>结束时间:text>
    28. <picker mode="date" bindchange="handleDateChange2">
    29. <input placeholder="请选择日期" disabled value="{{selectedDate2}}" />
    30. picker>
    31. <picker mode="time" bindchange="handleTimeChange2">
    32. <input placeholder="请选择时间" disabled value="{{selectedTime2}}" />
    33. picker>
    34. view>
    35. <button>发起投票button>
    36. view>

    wxss

    1. /* pages/vote/list/list.wxss */
    2. .hidden {
    3. display: none;
    4. }
    5. .title-view{
    6. background-color: beige;
    7. font-weight: 700;
    8. padding-left: 7px;
    9. }
    10. .info-title{
    11. padding: 5px 5px 10px 5px;
    12. border-top:1px solid rgb(129, 129, 127);
    13. }
    14. .info-text{
    15. height: 100px;
    16. padding: 5px 5px 10px 5px;
    17. border-top:1px solid rgb(129, 129, 127);
    18. }
    19. .image{
    20. padding-left: 55px;
    21. display: flex;
    22. align-items: center;
    23. }
    24. .time{
    25. border-top:1px solid rgb(129, 129, 127);
    26. padding: 5px 0px 5px 0px;
    27. display: flex;
    28. align-items: center;
    29. }
    30. .image-container{
    31. padding-left: 60px;
    32. }

    js

    1. // pages/vote/list/list.js
    2. Page({
    3. /**
    4. * 页面的初始数据
    5. */
    6. data: {
    7. tabs: ['发起投票', '投票进行中', '已结束投票', '全部投票'],//顶部导航栏
    8. componentStatus: [true, false, false, false],//用于处理内容显示
    9. imageUrl: '',// 用于存储选择的图片路径
    10. selectedDate1: '', // 用于开始存储选择的日期
    11. selectedTime1: '',// 用于开始存储选择的时间
    12. selectedDate2: '', // 用于结束存储选择的日期
    13. selectedTime2: '' // 用于结束存储选择的时间
    14. },
    15. //结束时间选择
    16. handleTimeChange2(e) {
    17. const selectedTime = e.detail.value;
    18. this.setData({
    19. selectedTime2: selectedTime // 更新选择的时间,触发重新渲染
    20. });
    21. },
    22. //结束日期选择
    23. handleDateChange2(e) {
    24. const selectedDate = e.detail.value;
    25. this.setData({
    26. selectedDate2: selectedDate // 更新选择的日期,触发重新渲染
    27. });
    28. },
    29. //开始时间选择
    30. handleTimeChange1(e) {
    31. const selectedTime = e.detail.value;
    32. this.setData({
    33. selectedTime1: selectedTime // 更新选择的时间,触发重新渲染
    34. });
    35. },
    36. //开始日期选择
    37. handleDateChange1(e) {
    38. const selectedDate = e.detail.value;
    39. this.setData({
    40. selectedDate1: selectedDate // 更新选择的日期,触发重新渲染
    41. });
    42. },
    43. //图片选择器
    44. handleUploadImage() {
    45. wx.chooseImage({
    46. count: 1,
    47. success: (res) => {
    48. const imagePath = res.tempFilePaths[0];
    49. // 处理选择的图片路径
    50. console.log('选择的图片路径:', imagePath);
    51. this.setData({
    52. imageUrl: imagePath // 更新图片路径,触发重新渲染
    53. });
    54. }
    55. });
    56. },
    57. //点击导航栏进行切换下方内容
    58. tabsItemChange(e) {
    59. let index = e.detail.index;
    60. //全部的组件赋值为false
    61. const lists = [false, false, false, false];
    62. //将所点击的组件赋值为true
    63. lists[index] = true;
    64. this.setData({
    65. componentStatus: lists // 更新 data 中的 componentStatus 属性值
    66. });
    67. } ,
    68. /**
    69. * 生命周期函数--监听页面加载
    70. */
    71. onLoad(options) {
    72. },
    73. /**
    74. * 生命周期函数--监听页面初次渲染完成
    75. */
    76. onReady() {
    77. },
    78. /**
    79. * 生命周期函数--监听页面显示
    80. */
    81. onShow() {
    82. },
    83. /**
    84. * 生命周期函数--监听页面隐藏
    85. */
    86. onHide() {
    87. },
    88. /**
    89. * 生命周期函数--监听页面卸载
    90. */
    91. onUnload() {
    92. },
    93. /**
    94. * 页面相关事件处理函数--监听用户下拉动作
    95. */
    96. onPullDownRefresh() {
    97. },
    98. /**
    99. * 页面上拉触底事件的处理函数
    100. */
    101. onReachBottom() {
    102. },
    103. /**
    104. * 用户点击右上角分享
    105. */
    106. onShareAppMessage() {
    107. }
    108. })

    效果展示: 

    五、个人中心布局

    相对之前的内容这个还是比较简单的大家直接看代码就好。

    1.wxml

    1. <view class="userInfo">
    2. <image class="userInfo-head" src="/static/persons/CSDN头像.jpg">image>
    3. <view class="userInfo-login">Java方文山view>
    4. <text class="userInfo-set">修改>text>
    5. view>
    6. <view class="cells">
    7. <view class="cell-items">
    8. <image src="/static/tabBar/sdk.png" class="cell-items-icon">image>
    9. <text class="cell-items-title">我发布的会议text>
    10. <view class="cell-items-num">3view>
    11. <text class="cell-items-detail">text>
    12. view>
    13. <hr />
    14. <view class="cell-items">
    15. <image src="/static/tabBar/sdk.png" class="cell-items-icon">image>
    16. <text class="cell-items-title">我主持的会议text>
    17. <view class="cell-items-num">4view>
    18. <text class="cell-items-detail">text>
    19. view>
    20. view>
    21. <view class="cells">
    22. <view class="cell-items">
    23. <image src="/static/tabBar/coding.png" class="cell-items-icon">image>
    24. <text class="cell-items-title">投票的会议text>
    25. <view class="cell-items-num">10view>
    26. <text class="cell-items-detail">text>
    27. view>
    28. <hr />
    29. <view class="cell-items">
    30. <image src="/static/tabBar/coding.png" class="cell-items-icon">image>
    31. <text class="cell-items-title">未投票的会议text>
    32. <view class="cell-items-num">6view>
    33. <text class="cell-items-detail">text>
    34. view>
    35. view>
    36. <view class="cells">
    37. <view class="cell-items">
    38. <image src="/static/tabBar/template.png" class="cell-items-icon">image>
    39. <text class="cell-items-title">我参与的会议text>
    40. <view class="cell-items-num">11view>
    41. <text class="cell-items-detail">text>
    42. view>
    43. <hr />
    44. <view class="cell-items">
    45. <image src="/static/tabBar/template.png" class="cell-items-icon">image>
    46. <text class="cell-items-title">我审核的会议text>
    47. <view class="cell-items-num">4view>
    48. <text class="cell-items-detail">text>
    49. view>
    50. view>
    51. <view class="cells">
    52. <view class="cell-items">
    53. <image src="/static/tabBar/coding.png" class="cell-items-icon">image>
    54. <text class="cell-items-title">消息text>
    55. view>
    56. <hr />
    57. <view class="cell-items">
    58. <image src="/static/tabBar/component.png" class="cell-items-icon">image>
    59. <text class="cell-items-title">设置text>
    60. view>
    61. view>

    2.wxss

    1. /* pages/ucenter/index/index.wxss */
    2. .userInfo{
    3. padding: 5px 0px 20px 10px;
    4. display: flex;
    5. align-items: center;
    6. }
    7. .userInfo-head{
    8. height: 80px;
    9. width: 80px;
    10. border: 5px solid rgb(121, 212, 224);
    11. }
    12. .userInfo-login{
    13. width: 245px;
    14. padding-left: 10px;
    15. font-weight: 700;
    16. }
    17. .userInfo-set{
    18. color: rgb(146, 151, 155);
    19. }
    20. .cells{
    21. border-top: 8px solid rgb(238, 238, 238);
    22. }
    23. .cell-items{
    24. display: flex;
    25. align-items: center;
    26. border-top: 1px solid rgb(238, 238, 238);
    27. padding-top: 20px;
    28. padding-bottom: 20px;
    29. }
    30. .cell-items-icon{
    31. height: 25px;
    32. width: 25px;
    33. padding: 0px 10px 0px 5px;
    34. }
    35. .cell-items-title{
    36. width: 340px;
    37. }
    38. .cell-items-num{
    39. width: 30px;
    40. font-weight: 700;
    41. color: rgb(218, 31, 31);
    42. }
    43. .cell-items-detail{
    44. color: rgb(146, 151, 155);
    45. }

    效果演示: 

    六、总体效果展示

    1.首页

    2.会议

    3.投票

    4.个人中心

     请添加图片描述

    到这里我的分享就结束了,欢迎到评论区探讨交流!!

    💖如果觉得有用的话还请点个赞吧 💖

  • 相关阅读:
    教你怎么在电脑端下载西瓜视频源文件
    windows环境hadoop报错‘D:\Program‘ 不是内部或外部命令,也不是可运行的程序 或批处理文件。
    基变换与坐标变换
    RocketMQ、Kafka、RabbitMQ 消费原理,顺序消费问题【图文理解】
    牛客网:NC129 阶乘末尾0的数量
    贪心算法-以学籍管理系统为例
    Day20 | 每天五道题
    全屋灯具选购指南,如何选择合适的灯具。福州中宅装饰,福州装修
    Deadlock found when trying to get lock; try restarting transaction主要要是死锁问题呢怎么解决
    MySQL中的高级查询
  • 原文地址:https://blog.csdn.net/weixin_74318097/article/details/133902874