• 微信小程序开发之自定义组件(会议OA项目其他页面搭建)


    目录

    前言

    一、WeChat中的自定义组件

    1. 基本概述

    2. 包含文件及作用

    3. 自定义组件的作用

     4.使用步骤:

    二、tabs组件及会议管理布局

    tabs组件

    1. 创建组件

    准备

     创建

    使用组件

    会议管理布局

    tabs.wxml指定组件模版

     tabs.wxss完成样式设计

    tabs.js定义属性

    在会议界面中运用组件

    添加数据

      tabs.js定义点击事件

    定义函数绑定显示数据及显示内容编译

    list.wxml

    list.wxss

     效果演示

    三、个人中心布局及效果搭建

    ucenter/index/index.wxml

    ucenter/index/index.wxss

    页面效果

    四、扩展:投票页面布局

    1. 创建运用组件

    list.json

     创造导航数据

    2. 页面运用组件及布局

    3. 编写样式

    页面效果



    前言

            老铁们好啊,今天又到了日常知识点的时候了。我们一起来回顾一下上期博客我们都收货到了什么,首先我们先是了解到了什么是FLex弹性布局,以及将弹性布局运用在实例中去展示效果以及演示了利用mock.js实现模拟后台数据交互,最后搭建会议OA首页界面。今天我要给大家带来的是微信小程序中的自定义组件的知识分享以及搭建会议OA其他界面。

    一、WeChat中的自定义组件

    1. 基本概述

            微信小程序中的自定义组件是一种可以在小程序中复用的组件。它由一个独立的文件夹组成,包含了相应的 wxml、wxss 和 js 文件。通过自定义组件,可以将页面上的一些模块化的功能或样式封装成一个组件,然后在不同的页面中重复使用。

            使用自定义组件的好处是提高代码的复用性和可维护性。当多个页面都需要某个功能或样式时,只需要在不同的页面中引用同一个自定义组件即可,减少了重复编写相同代码的工作量。同时,自定义组件也可以实现封装复杂的逻辑和交互,使页面结构更加清晰。

            自定义组件有自己的一套生命周期和数据传递机制。在组件的 js 文件中,可以定义组件的属性、方法和生命周期函数,用于实现组件的特定功能。在引用组件的页面中,可以通过设置属性值传递数据给组件,并通过事件机制与组件进行交互。

    2. 包含文件及作用

    自定义组件文件
    文件作用
    .json用于配置自定义组件的基本信息,例如组件的名称、引用时的标签名、是否启用插槽等。
    .wxml定义自定义组件的模板。可以使用小程序的模板语法,包括数据绑定、条件判断、循环等。
    .wxss设置自定义组件的样式。对应的是组件内部的样式,并不会影响到使用组件的页面。
    .js编写自定义组件的逻辑部分。你可以在这里定义组件的属性、方法和生命周期函数,实现组件的功能。

            在自定义组件中,通过使用 properties 字段来声明组件的属性,这样可以让页面在使用组件时进行数据的传递。通过在组件内部使用 this.properties 来获取传递进来的属性值。另外,还可以在组件中定义响应事件,并通过 this.triggerEvent() 来触发事件并传递数据给页面。

            要在页面中使用自定义组件,需要在页面的 .json 文件中进行注册,以便能够在页面的模板中引用。注册时需要指定自定义组件对应的文件路径和组件名。

    3. 自定义组件的作用

    微信小程序自定义组价有以下作用:

    1. 提高开发效率:通过将页面拆分为多个自定义组件,可以使开发团队更高效地并行开发。每个组件负责一部分功能,可以独立调试和测试,同时也方便重复使用。

    2. 规范化UI:自定义组件可以根据设计规范建立一套UI风格,确保小程序中各个页面和组件的一致性。这有助于提升用户体验并增加小程序的品牌价值。

    3. 提供丰富的功能:自定义组件可以封装一些常见的功能和交互效果,比如轮播图、下拉刷新、导航等。开发者只需引入并配置相应的组件,无需从零开始实现这些功能。

    4. 易于维护和扩展:自定义组件具备良好的封装性,内部的实现细节对外部是隐藏的,这样可以避免代码耦合和冲突。当需要修改或扩展某个功能时,只需要修改自定义组件的代码,而不会影响其他部分。

     4.使用步骤:

    1. 创建自定义组件:在小程序项目中创建一个新的文件夹来存放自定义组件相关的文件,通常以.wxml.wxss.js.json为后缀。其中,.js文件负责组件的逻辑,.wxml文件负责组件的视图结构,.wxss文件负责组件的样式,.json文件用于配置组件的属性、样式和行为。

    2. 注册自定义组件:在使用自定义组件的页面或其他自定义组件中,需要在json文件中的usingComponents字段中注册组件。使用自定义组件时,可以通过指定标签名来引入和使用该组件。

    例如,在页面的json文件中注册自定义组件的示例代码如下:

    1. {
    2. "usingComponents": {
    3. "custom-component": "/components/custom-component/custom-component"
    4. }
    5. }

    1. 使用自定义组件:在页面的wxml文件中,直接使用组件的标签名来引入该组件。可以在组件标签上设置组件的属性,并通过data属性传递数据给组件。

    例如,在页面中使用自定义组件的示例代码如下:

    <custom-component prop1="value1" prop2="{{data}}" bind:customEvent="handleCustomEvent">custom-component>
    

    1. 在自定义组件中处理事件:自定义组件可以触发事件并将数据传递给父组件。在组件的js文件中,通过this.triggerEvent来触发自定义事件,并通过参数传递数据给父组件。

    例如,在组件的js文件中触发自定义事件的示例代码如下:

    1. // 在组件的内部逻辑中触发自定义事件
    2. this.triggerEvent('customEvent', { data: "Hello, parent component!" });

    1. 在父组件中处理自定义事件:在使用自定义组件的父组件中,可以通过在组件上绑定相应的事件处理函数来接收自定义事件传递的数据。

    例如,在父组件的js文件中处理自定义事件的示例代码如下:

    1. // 在父组件的事件处理函数中接收自定义事件传递的数据
    2. Page({
    3. handleCustomEvent(e) {
    4. console.log(e.detail); // 输出自定义事件传递的数据
    5. }
    6. });

    通过以上步骤,你就可以在微信小程序中使用自定义组件了。记得在开发过程中,要确保正确引入和使用自定义组件,并处理好组件间的通信和交互。

    二、tabs组件及会议管理布局

    tabs组件

    1. 创建组件

    准备

            在创建组件的之前,先创建一个文件夹用于存放组件,每创建一个组件在该文件夹下再创建一个文件存放该组件。

             右击tabs,点击新建component选项,会在该文件夹下生成四个文件

     

     

             创建好之后控制台会出现一个错误,需要我们添加一个设置。

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

    将该代码添加到project.config.json文件中,然后重新编译一下。

     报错

     创建

            类似于页面,一个自定义组件由 json wxml wxss js 4个文件组成。要编写一个自定义组件,首先需要在 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. }

             在自定义组件的 js 文件中,需要使用 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. })
    使用组件

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

    1. {
    2. "usingComponents": {
    3. "component-tag-name": "path/to/the/custom/component"
    4. }
    5. }

     效果

    会议管理布局

    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定义属性

    在会议界面中运用组件

    添加数据

            在对应界面的list.js文件中造数据。根据自身需求进行添加或删除

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

     

             添加点击导航栏显示的对应数据

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

     

      tabs.js定义点击事件

    1. handleItemTap(e){
    2. // 获取索引
    3. const {index} = e.currentTarget.dataset;
    4. // 触发 父组件的事件
    5. this.triggerEvent("tabsItemChange",{index})
    6. this.setData({
    7. tabIndex:index
    8. })
    9. }

     

     效果

    定义函数绑定显示数据及显示内容编译

            在list.js文件中定义一个函数绑定数据。

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

             编写页面显示内容及样式

    list.wxml
    1. <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">
    2. tabs>
    3. <view style="height: 50px;">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>
    list.wxss
    1. /**index.wxss**/
    2. .mobi-title{
    3. background-color: lightgray;
    4. padding: 10px;
    5. }
    6. .mobi-icon{
    7. border: 1px solid red;
    8. margin-right: 5px;
    9. }
    10. .mobi-title text{
    11. font-weight: 700;
    12. }
    13. .list{
    14. display: flex;
    15. align-items: center;
    16. /* background-color: lightgray; */
    17. border-bottom: 3px solid lightgray;
    18. }
    19. .list-img{
    20. padding:0 10px;
    21. }
    22. .video-img{
    23. height: 80px;
    24. width: 80px;
    25. }
    26. .list-detail{
    27. display: flex;
    28. flex-direction: column;
    29. margin: 0px 0px 0px 5px;
    30. }
    31. .list-title{
    32. font-weight: 700;
    33. margin: 3px 0;
    34. }
    35. .list-tag{
    36. display: flex;
    37. align-items: center;
    38. }
    39. .state{
    40. border: 2px solid lightblue;
    41. padding: 3px 8px;
    42. color: lightblue;
    43. margin-right:0 5px 10px 0 ;
    44. }
    45. .join{
    46. color: lightgray;
    47. }
    48. .list-num{
    49. font-weight: 700;
    50. color: red;
    51. }
    52. .list-info{
    53. color: lightgray;
    54. font-size: 13px;
    55. }
    56. .bottom-line {
    57. text-align: center;
    58. }

     效果演示

    三、个人中心布局及效果搭建

    ucenter/index/index.wxml

    1. <view class="user">
    2. <image class="user-img" src="/static/persons/110.jpg">image>
    3. <view class="user-name">木易view>
    4. <view class="user-oper">修改view>
    5. view>
    6. <view class="info">
    7. <view class="item1">
    8. <view class="icon">
    9. <image class="item-icon" src="/static/tabBar/sdk.png" />
    10. view>
    11. <view class="item-title">
    12. 我主持的会议
    13. view>
    14. <view class="item-num">10view>
    15. <view class="item-oper">view>
    16. view>
    17. <view class="item2">
    18. <view class="icon">
    19. <image class="item-icon" src="/static/tabBar/sdk.png" />
    20. view>
    21. <view class="item-title">
    22. 我参与的会议
    23. view>
    24. <view class="item-num">10view>
    25. <view class="item-oper">view>
    26. view>
    27. view>
    28. <view class="vote">
    29. <view class="item1">
    30. <view class="icon">
    31. <image class="item-icon" src="/static/tabBar/sdk.png" />
    32. view>
    33. <view class="item-title">
    34. 我发布的投票
    35. view>
    36. <view class="item-num">8view>
    37. <view class="item-oper">view>
    38. view>
    39. <view class="item2">
    40. <view class="icon">
    41. <image class="item-icon" src="/static/tabBar/sdk.png" />
    42. view>
    43. <view class="item-title">
    44. 我参与的投票
    45. view>
    46. <view class="item-num">9view>
    47. <view class="item-oper">view>
    48. view>
    49. view>
    50. <view class="work">
    51. <view class="item1">
    52. <view class="icon">
    53. <image class="item-icon" src="/static/tabBar/template.png" />
    54. view>
    55. <view class="work-title">
    56. 消息
    57. view>
    58. <view class="item-oper">view>
    59. view>
    60. <view class="item2">
    61. <view class="icon">
    62. <image class="item-icon" src="/static/tabBar/component.png" />
    63. view>
    64. <view class="work-title">
    65. 设置
    66. view>
    67. <view class="item-oper">view>
    68. view>
    69. view>

    ucenter/index/index.wxss

    1. /* pages/ucenter/index/index.wxss */
    2. .user{
    3. display: flex;
    4. align-items: center;
    5. border-bottom: 15px solid #F5F5F5;
    6. }
    7. .user-img{
    8. height: 80px;
    9. width: 80px;
    10. margin: 10px;
    11. border-radius: 5px;
    12. border:2px solid lightgreen
    13. }
    14. .user-name{
    15. font-weight: 700;
    16. width:170px ;
    17. }
    18. .user-oper{
    19. color: lightgray;
    20. font-weight: 700;
    21. }
    22. .info{
    23. border-bottom: 15px solid #F5F5F5;
    24. }
    25. .item1{
    26. display: flex;
    27. align-items: center;
    28. padding: 5px 10px;
    29. border: 1px solid lightgrey;
    30. }
    31. .item-icon{
    32. width: 30px;
    33. height: 30px;
    34. }
    35. .item-title{
    36. width: 210px;
    37. margin-left: 5px;
    38. }
    39. .item-num{
    40. width: 35px;
    41. }
    42. .item-oper{
    43. color: lightgrey;
    44. font-weight: 700;
    45. }
    46. .item2{
    47. display: flex;
    48. align-items: center;
    49. padding: 5px 10px;
    50. }
    51. .vote{
    52. border-bottom: 15px solid #F5F5F5;
    53. }
    54. .work-title{
    55. width: 245px;
    56. margin-left: 5px;
    57. }

    页面效果

    四、扩展:投票页面布局

    1. 创建运用组件

    list.json

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

     创造导航数据

        tabs:['全部','已发布','已参与','未参与',],

    2. 页面运用组件及布局

    1. <text>pages/vote/list/list.wxmltext>
    2. <tabs tabList="{{tabs}}" bindtabsItemChange="tabsItemChange">
    3. tabs>
    4. <view style="height: 50px;">view>
    5. <view class="vote">
    6. <view class="votetitle">
    7. <image class="votetitle-img" src="/static/tabBar/sdk.png">image>
    8. <view class="votetitle-titie">你最喜欢的QQ头像view>
    9. view>
    10. <view class="voteinfo">
    11. <view class="left">
    12. <image class="left-image" src="/static/persons/111.jpg">image>
    13. <view class="votenum">票数:
    14. <view class="num">55view>
    15. view>
    16. <view class="votebtn">
    17. <image class="btn-img" src="/static/tabBar/vote.png" bin>image>
    18. view>
    19. view>
    20. <view class="right">
    21. <image class="right-image" src="/static/persons/112.jpg">image>
    22. <view class="votenum">票数:
    23. <view class="num">99view>
    24. view>
    25. <view class="votebtn" >
    26. <image class="btn-img" src="/static/tabBar/vote.png">image>
    27. view>
    28. view>
    29. view>
    30. <view class="tishs">点击图标进行投票view>
    31. view>
    32. <view class="vote">
    33. <view class="votetitle">
    34. <image class="votetitle-img" src="/static/tabBar/sdk.png">image>
    35. <view class="votetitle-titie">你最喜欢的微信头像view>
    36. view>
    37. <view class="voteinfo">
    38. <view class="left">
    39. <image class="left-image" src="/static/persons/113.jpg">image>
    40. <view class="votenum">票数:
    41. <view class="num">55view>
    42. view>
    43. <view class="votebtn">
    44. <image class="btn-img" src="/static/tabBar/vote.png" bin>image>
    45. view>
    46. view>
    47. <view class="right">
    48. <image class="right-image" src="/static/persons/114.jpg">image>
    49. <view class="votenum">票数:
    50. <view class="num">99view>
    51. view>
    52. <view class="votebtn" >
    53. <image class="btn-img" src="/static/tabBar/vote.png">image>
    54. view>
    55. view>
    56. view>
    57. <view class="tishs">点击图标进行投票view>
    58. view>

    3. 编写样式

    1. /* pages/vote/list/list.wxss */
    2. .votetitle{
    3. display: flex;
    4. align-items: center;
    5. }
    6. .votetitle-img{
    7. width: 30px;
    8. height: 30px;
    9. }
    10. .votetitle-titie{
    11. font-weight: 700;
    12. width: 250px;
    13. /* background-color: lightseagreen; */
    14. text-align: center;
    15. }
    16. .vote{
    17. border-bottom: 5px solid lightgray;
    18. }
    19. .voteinfo{
    20. padding: 10px;
    21. }
    22. .left{
    23. padding: 0 15px 0 15px;
    24. }
    25. .right{
    26. padding: 0 15px 0 15px;
    27. }
    28. .left-image{
    29. width: 120px;
    30. height:120px;
    31. border-radius: 5px;
    32. }
    33. .right-image{
    34. width: 120px;
    35. height:120px;
    36. border-radius: 5px;
    37. }
    38. .voteinfo{
    39. display: flex;
    40. }
    41. .votenum{
    42. font-size: 15px;
    43. font-weight: 600;
    44. color: red;
    45. display: flex;
    46. text-align: center;
    47. margin-left: 25px;
    48. }
    49. .num{
    50. width: 40px;
    51. }
    52. .btn-img{
    53. width: 25px;
    54. height: 25px;
    55. margin-left: 50px;
    56. }
    57. .tishs{
    58. font-size: 15px;
    59. color: lightgray;
    60. text-align: center;
    61. }

    页面效果

             本期博客分享到此结束,三连加关注就是对博主最大的支持,下期博客会进行进一步的功能拓展,敬请期待

     

  • 相关阅读:
    flutter聊天界面-TextField输入框buildTextSpan实现@功能展示高亮功能
    OceanMind海睿思入选弯弓研究院《2023中国营销技术生态图谱8.0》
    Ubuntu输入正确密码重新跳到登录界面
    Jenkins+Docker+SpringCloud微服务持续集成(中)
    [创业-35]:办公环境 - 选用家用无线AP和企业级无线AP?
    01准备阶段 Latex相关软件安装
    L51.linux命令每日一练 -- 第八章 Linux磁盘与文件系统管理命令 -- mkfs和dumpe2fs
    什么是运放的虚短和虚断
    FreeRTOS移植 --- base on gd32f30x + gcc
    SpringBoot + Redis + Token 解决接口幂等性问题,挑选最佳方案!
  • 原文地址:https://blog.csdn.net/weixin_74352229/article/details/133903136