当前位置:   article > 正文

微信小程序开发之会议OA项目首页搭建_oa小程序源码 网盘

oa小程序源码 网盘

目录

前言

一、弹性布局简介(Flex布局)

1. Flex布局是什么

2. 基本概念

 3. 容器的属性

二、模拟后台数据交互(利用mock.js实现轮播图+

1.新建一个文件存放接口地址及存放接口地址

 api.js

2. 实现轮播图案例

 index.wxml

  index.js

效果

​编辑 

三、会议OA首页搭建

1. 搭建下面的菜单栏

1.1 图片资源导入

1.2 搭建菜单栏

app.json 

效果演示

2. 搭建首页页面

index.wxml

3. js绑定数据

index.js

3. 调整页面样式

index.wxss

页面效果



前言

        在前面两期的博客中,我们想必对微信小程序开发有了一定的了解,今天我就给大家带来有关微信小程序搭建会议OA项目的分享。其中的知识点包含:弹性布局(微信小程序特有)、模拟实现后台数据交互以及mock.js的使用

一、弹性布局简介(Flex布局)

1. Flex布局是什么

        Flex布局,也叫弹性布局,是一种用于网页布局的新的CSS3特性。它通过让容器和其中的子项能够灵活地伸缩和排列,以适应不同屏幕尺寸和设备方向的变化。Flex布局通过设置容器的属性来控制子项的布局方式,包括水平和垂直方向的排列、大小调整等。

        Flex布局有两个层级的组件:容器和子项。容器是指应用Flex布局的父元素,通过设置display: flexdisplay: inline-flex来启用Flex布局。而子项则是容器的直接子元素,在容器中按照一定的规则排列和布局。

        Flex布局具有灵活性、响应式和适应性强的特点,使得页面布局更加简洁和易于管理。它可以用于构建复杂的网页布局,适用于各种设备和屏幕尺寸,提供更好的用户体验。

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. 容器的属性

Flex的容器属性
属性作用
display 设置容器的显示类型,可选的值有flexinline-flex,分别表示生成一个块级容器和一个内联容器。
flex-direction设置主轴的方向,决定了子项的排列顺序。可选的值有row(默认值,水平方向)、row-reverse(水平方向,反向排列)、column(垂直方向)和column-reverse(垂直方向,反向排列)。
flex-wrap设置子项是否换行。可选的值有nowrap(默认值,不换行)、wrap(换行)和wrap-reverse(反向换行)。
justify-content设置子项在主轴上的对齐方式。可选的值有flex-start(默认值,靠左/靠上对齐)、flex-end(靠右/靠下对齐)、center(居中对齐)、space-between(两端对齐,项目之间间隔相等)、space-around(每个项目两侧的间隔相等)和space-evenly(每个项目两侧和之间的间隔相等)。
align-items:设置子项在交叉轴上的对齐方式(垂直方向上的对齐方式)。可选的值有stretch(默认值,拉伸以填充交叉轴)、flex-start(靠上对齐)、flex-end(靠下对齐)、center(居中对齐)和baseline(以基线对齐)。
align-content当容器的多行子项存在空隙时,设置它们在交叉轴上的对齐方式。可选的值有stretch(默认值,拉伸以填充交叉轴)、flex-start(靠上对齐)、flex-end(靠下对齐)、center(居中对齐)、space-between(两端对齐,行之间间隔相等)、space-around(每行两侧的间隔相等)和space-evenly(每行两侧和之间的间隔相等)。

二、模拟后台数据交互(利用mock.js实现轮播图+

1.新建一个文件存放接口地址及存放接口地址

我们将所有的接口地址定义在api.js中

 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. };

2. 实现轮播图案例

        将index.wxss、index.wxml原有的都清除掉,方便我们进行布局及样式调整。先在详情中点击本地设置勾选不校验合法域名。

点击》符号,找到mock

 点击+符号新增一个,用于模拟后台数据。填写好内容

 

 保存好重新编译一下,控制台打印出我们的数据。

 

 前往官网查找轮播图组件实现轮播图。

 index.wxml
  1. <!--index.wxml-->
  2. <view>
  3. <swiper indicator-dots="true"
  4. autoplay="true" >
  5. <block wx:for="{{imgSrcs}}" wx:key="text">
  6. <swiper-item>
  7. <image src="{{item.image}}"></image>
  8. </swiper-item>
  9. </block>
  10. </swiper>
  11. </view>
  index.js
  1. // index.js
  2. // 获取应用实例
  3. const app = getApp()
  4. // 导入接口文件
  5. const api =require("../../config/api.js")
  6. Page({
  7. data: {
  8. imgSrcs:[ {
  9. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner1.png",
  10. "text": "1"
  11. },
  12. {
  13. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner2.png",
  14. "text": "2"
  15. },
  16. {
  17. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner3.png",
  18. "text": "3"
  19. },
  20. {
  21. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner4.png",
  22. "text": "4"
  23. },
  24. {
  25. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner5.png",
  26. "text": "5"
  27. },
  28. {
  29. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner6.png",
  30. "text": "6"
  31. }]
  32. },
  33. // 事件处理函数
  34. bindViewTap() {
  35. wx.navigateTo({
  36. url: '../logs/logs'
  37. })
  38. },
  39. // 加载轮播图的数据函数
  40. // loadSwiperImgs(){
  41. // let that=this;
  42. // wx.request({
  43. // url: api.SwiperImgs,
  44. // dataType: 'json',
  45. // success(res) {
  46. // console.log(res)
  47. // console.log(res.data.image)
  48. // this.setData({
  49. // imgSrcs:res.data.image
  50. // })
  51. // }
  52. // })
  53. // },
  54. onLoad() {
  55. if (wx.getUserProfile) {
  56. this.setData({
  57. canIUseGetUserProfile: true
  58. })
  59. }
  60. // 调用加载轮播图的方法
  61. // this.loadSwiperImgs();
  62. },
  63. getUserProfile(e) {
  64. // 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认,开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
  65. wx.getUserProfile({
  66. desc: '展示用户信息', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
  67. success: (res) => {
  68. console.log(res)
  69. this.setData({
  70. userInfo: res.userInfo,
  71. hasUserInfo: true
  72. })
  73. }
  74. })
  75. },
  76. getUserInfo(e) {
  77. // 不推荐使用getUserInfo获取用户信息,预计自2021年4月13日起,getUserInfo将不再弹出弹窗,并直接返回匿名的用户个人信息
  78. console.log(e)
  79. this.setData({
  80. userInfo: e.detail.userInfo,
  81. hasUserInfo: true
  82. })
  83. }
  84. })
效果

三、会议OA首页搭建

1. 搭建下面的菜单栏

1.1 图片资源导入

        将存放图片的资源的文件夹复制到项目文件下

 

 

这样图片资源导入完成 

1.2 搭建菜单栏

 创建菜单栏所需页面,以及配置菜单栏

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

2. 搭建首页页面

index.wxml

  1. <!--index.wxml-->
  2. <view>
  3. <swiper indicator-dots="true"
  4. autoplay="true" style="padding: 5px;">
  5. <block wx:for="{{imgSrcs}}" wx:key="text">
  6. <swiper-item>
  7. <image src="{{item.image}}"></image>
  8. </swiper-item>
  9. </block>
  10. </swiper>
  11. </view>
  12. <view class="mobi-title">
  13. <text class="mobi-icon"></text>
  14. <text>会议信息</text>
  15. </view>
  16. <block wx:for-items="{{lists}}" wx:for-item="item" wx:key="item.id">
  17. <view class="list" data-id="{{item.id}}">
  18. <view class="list-img">
  19. <image class="video-img" mode="scaleToFill" src="{{item.image}}"></image>
  20. </view>
  21. <view class="list-detail">
  22. <view class="list-title"><text>{{item.title}}</text></view>
  23. <view class="list-tag">
  24. <view class="state">{{item.state}}</view>
  25. <view class="join"><text class="list-num">{{item.num}}</text>人报名</view>
  26. </view>
  27. <view class="list-info"><text>{{item.location}}</text>|<text>{{item.starttime}}</text></view>
  28. </view>
  29. </view>
  30. </block>
  31. <view class="section bottom-line">
  32. <text>到底啦</text>
  33. </view>

3. js绑定数据

index.js

  1. // index.js
  2. // 获取应用实例
  3. const app = getApp()
  4. // 导入接口文件
  5. const api =require("../../config/api.js")
  6. Page({
  7. data: {
  8. imgSrcs:[ {
  9. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner1.png",
  10. "text": "1"
  11. },
  12. {
  13. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner2.png",
  14. "text": "2"
  15. },
  16. {
  17. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner3.png",
  18. "text": "3"
  19. },
  20. {
  21. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner4.png",
  22. "text": "4"
  23. },
  24. {
  25. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner5.png",
  26. "text": "5"
  27. },
  28. {
  29. "image": "https://cdn-we-retail.ym.tencent.com/tsr/home/v2/banner6.png",
  30. "text": "6"
  31. }],
  32. // 会议信息数据
  33. lists: [
  34. {
  35. "id": "1",
  36. "image": "/static/persons/1.jpg",
  37. "title": "对话产品总监 | 深圳·北京PM大会 【深度对话小米/京东/等产品总监】",
  38. "num":"304",
  39. "state":"进行中",
  40. "starttime": "2022-03-13 00:00:00",
  41. "location": "深圳市·南山区"
  42. },
  43. {
  44. "id": "1",
  45. "image": "/static/persons/2.jpg",
  46. "title": "AI WORLD 2016世界人工智能大会",
  47. "num":"380",
  48. "state":"已结束",
  49. "starttime": "2022-03-15 00:00:00",
  50. "location": "北京市·朝阳区"
  51. },
  52. {
  53. "id": "1",
  54. "image": "/static/persons/3.jpg",
  55. "title": "H100太空商业大会",
  56. "num":"500",
  57. "state":"进行中",
  58. "starttime": "2022-03-13 00:00:00",
  59. "location": "大连市"
  60. },
  61. {
  62. "id": "1",
  63. "image": "/static/persons/4.jpg",
  64. "title": "报名年度盛事,大咖云集!2016凤凰国际论坛邀您“与世界对话”",
  65. "num":"150",
  66. "state":"已结束",
  67. "starttime": "2022-03-13 00:00:00",
  68. "location": "北京市·朝阳区"
  69. },
  70. {
  71. "id": "1",
  72. "image": "/static/persons/5.jpg",
  73. "title": "新质生活 · 品质时代 2016消费升级创新大会",
  74. "num":"217",
  75. "state":"进行中",
  76. "starttime": "2022-03-13 00:00:00",
  77. "location": "北京市·朝阳区"
  78. }
  79. ]
  80. },
  81. // 事件处理函数
  82. bindViewTap() {
  83. wx.navigateTo({
  84. url: '../logs/logs'
  85. })
  86. },
  87. // 加载轮播图的数据函数
  88. // loadSwiperImgs(){
  89. // let that=this;
  90. // wx.request({
  91. // url: api.SwiperImgs,
  92. // dataType: 'json',
  93. // success(res) {
  94. // console.log(res)
  95. // console.log(res.data.image)
  96. // this.setData({
  97. // imgSrcs:res.data.image
  98. // })
  99. // }
  100. // })
  101. // },
  102. onLoad() {
  103. if (wx.getUserProfile) {
  104. this.setData({
  105. canIUseGetUserProfile: true
  106. })
  107. }
  108. // 调用加载轮播图的方法
  109. // this.loadSwiperImgs();
  110. },
  111. getUserProfile(e) {
  112. // 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认,开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
  113. wx.getUserProfile({
  114. desc: '展示用户信息', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
  115. success: (res) => {
  116. console.log(res)
  117. this.setData({
  118. userInfo: res.userInfo,
  119. hasUserInfo: true
  120. })
  121. }
  122. })
  123. },
  124. getUserInfo(e) {
  125. // 不推荐使用getUserInfo获取用户信息,预计自2021年4月13日起,getUserInfo将不再弹出弹窗,并直接返回匿名的用户个人信息
  126. console.log(e)
  127. this.setData({
  128. userInfo: e.detail.userInfo,
  129. hasUserInfo: true
  130. })
  131. }
  132. })

3. 调整页面样式

index.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. }
  28. .list-title{
  29. font-weight: 700;
  30. margin: 3px 0;
  31. }
  32. .list-tag{
  33. display: flex;
  34. align-items: center;
  35. }
  36. .state{
  37. border: 2px solid lightblue;
  38. padding: 3px 8px;
  39. color: lightblue;
  40. margin-right:0 5px 10px 0 ;
  41. }
  42. .join{
  43. color: lightgray;
  44. }
  45. .list-num{
  46. font-weight: 700;
  47. color: red;
  48. }
  49. .list-info{
  50. color: lightgray;
  51. font-size: 13px;
  52. }
  53. .bottom-line {
  54. text-align: center;
  55. }

页面效果

        本期的博客分享到此结束,希望大家三连加关注支持一波,请敬请期待下期博客分享

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/671510
推荐阅读
相关标签
  

闽ICP备14008679号