• 【微信小程序】无纸化会议OA系统之首页搭建


    前言

    中国政府意识到信息技术的重要性,并开始积极推动信息产业的发展。一系列政策和措施被制定和执行,以促进信息技术的采用和普及,从而推动数字化时代的到来。为了响应国家推行的数字化时代,本篇文章以会议OA系统为背景进行编写。

    一、Flex弹性布局

    布局的传统解决方案,基于盒状模型,依赖 display属性 + position属性 + float属性。它对于那些特殊布局非常不方便,比如,垂直居中就不容易实现。

    2009年,W3C提出了一种新的方案—-Flex布局,可以简便、完整、响应式地实现各种页面布局。目前,它已经得到了所有浏览器的支持,这意味着,现在就能很安全地使用这项功能。

    1.Flex布局是什么? 

    Flex是Flexible Box的缩写,意为”弹性布局”,用来为盒状模型提供最大的灵活性。

    任何一个容器都可以指定为Flex布局

    1. .box{
    2. display: flex;
    3. }

    行内元素也可以使用Flex布局。

    1. .box{
    2. display: inline-flex;
    3. }

    Webkit内核的浏览器,必须加上-webkit前缀。

    1. .box{
    2. display: -webkit-flex; /* Safari */
    3. display: flex;
    4. }

    注意,设为Flex布局以后,子元素的float、clear和vertical-align属性将失效。 

    2.基本概念

    采用Flex布局的元素,称为Flex容器(flex container),简称”容器”。它的所有子元素自动成为容器成员,称为Flex项目(flex item),简称”项目”。

    容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start,结束位置叫做main end;交叉轴的开始位置叫做cross start,结束位置叫做cross end。

    项目默认沿主轴排列。单个项目占据的主轴空间叫做main size,占据的交叉轴空间叫做cross size。

    3.容器的属性

    以下6个属性设置在容器上。

    • flex-direction
    • flex-wrap
    • flex-flow
    • justify-content
    • align-items
    • align-content

    3.1 flex-direction属性

    flex-direction属性决定主轴的方向(即项目的排列方向)。

    1. .box {
    2. flex-direction: row | row-reverse | column | column-reverse;
    3. }

    它可能有4个值。

    • row(默认值):主轴为水平方向,起点在左端。
    • row-reverse:主轴为水平方向,起点在右端。
    • column:主轴为垂直方向,起点在上沿。
    • column-reverse:主轴为垂直方向,起点在下沿。
    3.2 flex-wrap属性

    默认情况下,项目都排在一条线(又称”轴线”)上。flex-wrap属性定义,如果一条轴线排不下,如何换行。

    1. .box{
    2. flex-wrap: nowrap | wrap | wrap-reverse;
    3. }

    它可能取三个值。

    (1)nowrap(默认):不换行。

    (2)wrap:换行,第一行在上方。

     (3)wrap-reverse:换行,第一行在下方。

    3.3 flex-flow

    flex-flow属性是flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap。

     

    1. .box {
    2. flex-flow: ;
    3. }
    3.4 justify-content属性

    justify-content属性定义了项目在主轴上的对齐方式。

    1. .box {
    2. justify-content: flex-start | flex-end | center | space-between | space-around;
    3. }

    它可能取5个值,具体对齐方式与轴的方向有关。下面假设主轴为从左到右。

    • flex-start(默认值):左对齐
    • flex-end:右对齐
    • center: 居中
    • space-between:两端对齐,项目之间的间隔都相等。
    • space-around:每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。
    3.5 align-items属性

    align-items属性定义项目在交叉轴上如何对齐。

    1. .box {
    2. align-items: flex-start | flex-end | center | baseline | stretch;
    3. }

     它可能取5个值。具体的对齐方式与交叉轴的方向有关,下面假设交叉轴从上到下。

    • flex-start:交叉轴的起点对齐。
    • flex-end:交叉轴的终点对齐。
    • center:交叉轴的中点对齐。
    • baseline: 项目的第一行文字的基线对齐。
    • stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。
    3.6 align-content属性

    align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。

    1. .box {
    2. align-content: flex-start | flex-end | center | space-between | space-around | stretch;
    3. }

     

     该属性可能取6个值。

    • flex-start:与交叉轴的起点对齐。
    • flex-end:与交叉轴的终点对齐。
    • center:与交叉轴的中点对齐。
    • space-between:与交叉轴两端对齐,轴线之间的间隔平均分布。
    • space-around:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。
    • stretch(默认值):轴线占满整个交叉轴。

    二、首页布局搭建

    1.底部页面的搭建

    一个微信小程序必不可少的就是底部导航栏,所以我们先搭建一个底部导航栏 ,根据微信小程序的开发者文档可知,底部导航栏需要在api.json定义tabBar并做好相应的配置(注意先在pages做好页面的定义)。

    底部导航栏没有图标是显得非常单调的,所以我们还要创建一个文件夹名为static用来存放图片

    继续在static文件夹下创建一个文件名为tabBar,将我们所需的图标放入,搭配属性iconPath引用图标即可。

    1. {
    2. "pages":[
    3. "pages/index/index",
    4. "pages/meeting/list/list",
    5. "pages/vote/list/list",
    6. "pages/ucenter/index/index",
    7. "pages/pageOne/pageOne",
    8. "pages/pageTwo/pageTwo",
    9. "pages/users/user",
    10. "pages/logs/logs"
    11. ],
    12. "window":{
    13. "backgroundTextStyle":"light",
    14. "navigationBarBackgroundColor": "#fff",
    15. "navigationBarTitleText": "Weixin",
    16. "navigationBarTextStyle":"black"
    17. },
    18. "tabBar": {
    19. "list": [{
    20. "pagePath": "pages/index/index",
    21. "text": "首页",
    22. "iconPath": "/static/tabBar/coding.png",
    23. "selectedIconPath": "/static/tabBar/coding-active.png"
    24. }, {
    25. "pagePath": "pages/meeting/list/list",
    26. "text": "会议",
    27. "iconPath": "/static/tabBar/sdk.png",
    28. "selectedIconPath": "/static/tabBar/sdk-active.png"
    29. }, {
    30. "pagePath": "pages/vote/list/list",
    31. "text": "投票",
    32. "iconPath": "/static/tabBar/template.png",
    33. "selectedIconPath": "/static/tabBar/template-active.png"
    34. }
    35. , {
    36. "pagePath": "pages/ucenter/index/index",
    37. "text": "设置",
    38. "iconPath": "/static/tabBar/component.png",
    39. "selectedIconPath": "/static/tabBar/component-active.png"
    40. }]
    41. },
    42. "style": "v2",
    43. "sitemapLocation": "sitemap.json"
    44. }

     

    2.首页轮播图搭建

    2.1.后端接口管理

    轮播图这种资源一定是从数据库来的数据,那么我们怎么通过微信小程序开发获取后端呢?

    还是一样看官网,通过官网可知我们发送ajax请求是wx.restartMiniProgram(Object object) 

    其他的东西还是基本与我们发送ajax请求一致的。

     为了后期方便维护我们先将所有的后端接口通过一个文件来保存,在根目录下新建config文件夹随后建立api.js文件。

    1. // 以下是业务服务器API地址
    2. // 本机开发API地址
    3. var WxApiRoot = 'http://localhost:8080/demo/wx/';
    4. // 测试环境部署api地址
    5. // var WxApiRoot = 'http://192.168.0.101:8070/demo/wx/';
    6. // 线上平台api地址
    7. //var WxApiRoot = 'https://www.oa-mini.com/demo/wx/';
    8. module.exports = {
    9. IndexUrl: WxApiRoot + 'home/index', //首页数据接口
    10. SwiperImgs: WxApiRoot+'swiperImgs', //轮播图
    11. MettingInfos: WxApiRoot+'meeting/list', //会议信息
    12. };

    还是一样先定义本机开发的API地址,具体的请求在下面定义方便管理。

    2.2.Mock模拟数据

    今天不带大家展示请求后端所以我们利用Mock来制造一些“假数据”来模拟一下。

    Mock 的入口在工具调试面板顶部的 Tab,点 + 新建规则

    Mock模拟的轮播图数据:

    1. {
    2. "data": {
    3. "images":[
    4. {
    5. "img": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner1.png",
    6. "text": "1"
    7. },
    8. {
    9. "img": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner2.png",
    10. "text": "2"
    11. },
    12. {
    13. "img": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner3.png",
    14. "text": "3"
    15. },
    16. {
    17. "img": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner4.png",
    18. "text": "4"
    19. },
    20. {
    21. "img": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner5.png",
    22. "text": "5"
    23. },
    24. {
    25. "img": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner6.png",
    26. "text": "6"
    27. }
    28. ]
    29. },
    30. "statusCode": "200",
    31. "header": {
    32. "content-type":"applicaiton/json;charset=utf-8"
    33. }
    34. }

     

    1. // index.js
    2. // 获取应用实例
    3. const app = getApp()
    4. const api = require("../../config/api")
    5. Page({
    6. data: {
    7. imgSrcs:[]
    8. },
    9. loadSwiperImgs(){
    10. let that=this;
    11. wx.request({
    12. url: api.SwiperImgs,
    13. dataType: 'json',
    14. success(res) {
    15. console.log(res)
    16. that.setData({
    17. imgSrcs:res.data.images
    18. })
    19. }
    20. })
    21. },
    22. // 事件处理函数
    23. bindViewTap() {
    24. wx.navigateTo({
    25. url: '../logs/logs'
    26. })
    27. },
    28. onLoad() {
    29. if (wx.getUserProfile) {
    30. this.setData({
    31. canIUseGetUserProfile: true
    32. })
    33. }
    34. this.loadSwiperImgs();
    35. },
    36. })

     index.wxml

    1. <view class="myswiper">
    2. <swiper indicator-dots="true" autoplay="true">
    3. <block wx:for="{{imgSrcs}}" wx:key="{{text}}">
    4. <swiper-item>
    5. <image src="{{item.img}}">image>
    6. swiper-item>
    7. block>
    8. swiper>
    9. view>

     小贴士:

    有一部分的友友可能遇到以下问题: http://localhost:8080 不在以下 request 合法域名列表中

     因为我们现在的小程序开发默认检查安全证书(域名为https)所以我们的请求过不去,我们只需点击微信小程序开发中的详情按钮,再继续点击本地设置不校验合法域名选项打开。

    3.首页会议信息搭建

     我们照猫画虎,和我们轮播图的流程一样,定义接口发送ajax再利用Mock模拟数据根据官网提供的组件进行完善。

    1. class="mobi-title">
    2. <text class="mobi-icon">text>
    3. <text>会议信息text>
    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.location}}text>|<text>{{item.starttime}}text>view>
    16. view>
    17. view>
    18. block>
    19. <view class="mysection">
    20. <text>到底啦text>
    21. view>

     

    1. // index.js
    2. // 获取应用实例
    3. const app = getApp()
    4. const api = require("../../config/api")
    5. Page({
    6. data: {
    7. imgSrcs:[]
    8. },
    9. loadSwiperImgs(){
    10. let that=this;
    11. wx.request({
    12. url: api.SwiperImgs,
    13. dataType: 'json',
    14. success(res) {
    15. console.log(res)
    16. that.setData({
    17. imgSrcs:res.data.images
    18. })
    19. }
    20. })
    21. },
    22. //首页会议信息的ajax
    23. loadMeetingInfos(){
    24. let that=this;
    25. wx.request({
    26. url: api.MettingInfos,
    27. dataType: 'json',
    28. success(res) {
    29. console.log(res)
    30. that.setData({
    31. lists:res.data.lists
    32. })
    33. }
    34. })
    35. },
    36. // 事件处理函数
    37. bindViewTap() {
    38. wx.navigateTo({
    39. url: '../logs/logs'
    40. })
    41. },
    42. onLoad() {
    43. if (wx.getUserProfile) {
    44. this.setData({
    45. canIUseGetUserProfile: true
    46. })
    47. }
    48. this.loadSwiperImgs();
    49. this.loadMeetingInfos();
    50. },
    51. })

    WXSS

    1. /**index.wxss**/
    2. .swiper-item {
    3. height: 300rpx;
    4. width: 100%;
    5. border-radius: 10rpx;
    6. }
    7. /**index.wxss**/
    8. .myswiper{
    9. padding:0 0 0 25px;
    10. }
    11. .mobi-title{
    12. background-color: rgb(252, 248, 248);
    13. margin-left: 5px;
    14. color: gray;
    15. font-weight: 600;
    16. }
    17. .mobi-icon{
    18. border-left: red solid 1px ;
    19. margin-right: 3px;
    20. }
    21. .list{
    22. display: flex;
    23. border-bottom: rgb(233, 231, 231) solid 3px;
    24. }
    25. .list-img{
    26. display: flex;
    27. align-items: center;
    28. margin-right: 15px;
    29. }
    30. .video-img{
    31. width: 120rpx;
    32. height: 120rpx;
    33. }
    34. .list-title{
    35. font-weight: bold;
    36. }
    37. .list-tag{
    38. display: flex;
    39. }
    40. .state{
    41. border: rgb(35, 171, 224) solid 1px;
    42. color: rgb(35, 171, 224);
    43. align-items: center;
    44. width: 65px;
    45. display: flex;
    46. justify-content: center;
    47. }
    48. .join{
    49. margin-left: 8px;
    50. color: lightgray;
    51. }
    52. .list-num{
    53. color: red;
    54. font-weight: 600;
    55. }
    56. .list-info{
    57. display: flex;
    58. color: lightgray;
    59. margin-top: 10px;
    60. }
    61. .mysection{
    62. display: flex;
    63. justify-content: center;
    64. }
    65. .userinfo {
    66. display: flex;
    67. flex-direction: column;
    68. align-items: center;
    69. color: #aaa;
    70. }
    71. .userinfo-avatar {
    72. overflow: hidden;
    73. width: 128rpx;
    74. height: 128rpx;
    75. margin: 20rpx;
    76. border-radius: 50%;
    77. }
    78. .usermotto {
    79. margin-top: 200px;
    80. }

    Mock模拟的会议信息数据:

    1. {
    2. "data": {
    3. "lists": [
    4. {
    5. "id": "1",
    6. "image": "/static/persons/1.jpg",
    7. "title": "对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】",
    8. "num":"304",
    9. "state":"进行中",
    10. "starttime": "2022-03-13 00:00:00",
    11. "location": "深圳市·南山区"
    12. },
    13. {
    14. "id": "1",
    15. "image": "/static/persons/2.jpg",
    16. "title": "AI WORLD 2016世界人工智能大会",
    17. "num":"380",
    18. "state":"已结束",
    19. "starttime": "2022-03-15 00:00:00",
    20. "location": "北京市·朝阳区"
    21. },
    22. {
    23. "id": "1",
    24. "image": "/static/persons/3.jpg",
    25. "title": "H100太空商业大会",
    26. "num":"500",
    27. "state":"进行中",
    28. "starttime": "2022-03-13 00:00:00",
    29. "location": "大连市"
    30. },
    31. {
    32. "id": "1",
    33. "image": "/static/persons/4.jpg",
    34. "title": "报名年度盛事,大咖云集!2016凤凰国际论坛邀您“与世界对话”",
    35. "num":"150",
    36. "state":"已结束",
    37. "starttime": "2022-03-13 00:00:00",
    38. "location": "北京市·朝阳区"
    39. },
    40. {
    41. "id": "1",
    42. "image": "/static/persons/5.jpg",
    43. "title": "新质生活 · 品质时代 2016消费升级创新大会",
    44. "num":"217",
    45. "state":"进行中",
    46. "starttime": "2022-03-13 00:00:00",
    47. "location": "北京市·朝阳区"
    48. }
    49. ]
    50. },
    51. "statusCode": "200",
    52. "header": {
    53. "content-type":"applicaiton/json;charset=utf-8"
    54. }
    55. }


    效果展示

  • 相关阅读:
    分布式锁 - 理论篇
    【牛客网面试必刷】链表篇
    Java高手的30k之路|面试宝典|精通Map篇
    Linux--FTP服务器功能--项目
    利用Django开发博客网站并在阿里云上利用 Nginx + Gunicorn 部署上线(开发篇)
    截止2021年企业公众号开通数据(60万+记录)
    windows:批处理bat入门
    SqlServer 2019 安装教程(图文)
    SpringMVC:转发和重定向
    使用el-cascader组件子集不能多选
  • 原文地址:https://blog.csdn.net/Ying_hao_kun/article/details/133892236