|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "tabBar":{
- "color":"#777777",
- "selectedColor":"#2388FF",
- "backgroundColor":"#FFFFFF",
- "borderStyle":"white",
- "fontSize":"18rpx",
- "list": [
- {
- "pagePath": "pages/home",
- "iconPath": "/static/image/tabbar/home.png",
- "selectedIconPath": "/static/image/tabbar/home.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/attendanceCall/index",
- "iconPath": "/static/image/tabbar/attendanceCall.png",
- "selectedIconPath": "/static/image/tabbar/attendanceCall.png",
- "text": "考勤点名"
- },
- {
- "pagePath": "pages/earlyWarning/index",
- "iconPath": "/static/image/tabbar/earlyWarning_active.png",
- "selectedIconPath": "/static/image/tabbar/earlyWarning_active.png",
- "text": "预警巡警"
- },
- {
- "pagePath": "pages/my/index",
- "iconPath": "/static/image/tabbar/my.png",
- "selectedIconPath": "/static/image/tabbar/my.png",
- "text": "我的"
- }
- ]
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- // 首页
- {
- "path": "pages/home",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- // 考勤点名
- {
- "path": "pages/attendanceCall/index",
- "style": {
- "navigationBarTitleText": "考勤点名",
- "enablePullDownRefresh": true
- }
- },
- // 归寝
- {
- "path" : "pages/attendanceCall/returnBed/detail",
- "style" :
- {
- "navigationBarTitleText": "查看详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/attendanceCall/returnBed/comfirm",
- "style" :
- {
- "navigationBarTitleText": "归寝确认",
- "enablePullDownRefresh": false
- }
- },
- // 客流
- {
- "path" : "pages/attendanceCall/passengerFlow/detail",
- "style" :
- {
- "navigationBarTitleText": "分片详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/attendanceCall/passengerFlow/add",
- "style" :
- {
- "navigationBarTitleText": "新增查询",
- "enablePullDownRefresh": false
- }
- },
- // {
- // "path": "pages/attendanceCall/rollCall/index",
- // "style": {
- // "navigationBarTitleText": "点名"
- // }
- // },
- // {
- // "path": "pages/attendanceCall/returnBed/index",
- // "style": {
- // "navigationBarTitleText": "归寝"
- // }
- // },
- // {
- // "path": "pages/attendanceCall/passengerFlow/index",
- // "style": {
- // "navigationBarTitleText": "客流"
- // }
- // },
- // 预警巡警
- {
- "path": "pages/earlyWarning/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/earlyWarning/detail",
- "style": {
- "navigationBarTitleText": "查看详情"
- }
- },
- {
- "path": "pages/earlyWarning/handlingSuggestions",
- "style": {
- "navigationBarTitleText": "处理意见"
- }
- },
- {
- "path": "pages/earlyWarning/processingResults",
- "style": {
- "navigationBarTitleText": "处理结果"
- }
- },
- {
- "path": "pages/monitor/index",
- "style": {
- "navigationBarTitleText": "监控管理"
- }
- },
- // 我的
- {
- "path": "pages/my/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "校园监控预警平台",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|