123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/history/history",
- "style": {
- "navigationBarTitleText": "操作记录",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/history/detail/detail",
- "style": {
- "navigationBarTitleText": "操作记录详情"
- }
- },
- {
- "path" : "pages/myCenter/myCenter",
- "style" :
- {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/authorizedLogin/index",
- "style": {
- "navigationBarTitleText": "授权登录"
- }
- },
- {
- "path": "pages/service_agreement/service_agreement",
- "style": {
- "navigationBarTitleText": "隐私协议"
- }
- }
- ,{
- "path" : "pages/app_views/satisfaction_evaluation/satisfaction_evaluation",
- "style" :
- {
- "navigationBarTitleText": "满意度评价",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/app_views/safe_checked/safe_checked",
- "style" :
- {
- "navigationBarTitleText": "安全巡检",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/app_views/danger/submit/submit",
- "style" :
- {
- "navigationBarTitleText": "登记隐患",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/app_views/equipment_maintenance/equipment_maintenance",
- "style" :
- {
- "navigationBarTitleText": "设备保养",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/app_views/problem_feedback/problem_feedback",
- "style" :
- {
- "navigationBarTitleText": "问题反馈",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/app_views/danger/handle/handle",
- "style" :
- {
- "navigationBarTitleText": "隐患处理",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/app_views/checkList/index/index",
- "style" :
- {
- "navigationBarTitleText": "清单",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/app_views/checkList/from/from",
- "style" :
- {
- "navigationBarTitleText": "风险点巡检",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#1296db",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/index.png",
- "selectedIconPath": "static/tabbar/indexEd.png",
- "text": "首页"
- }, {
- "pagePath": "pages/history/history",
- "iconPath": "static/tabbar/history.png",
- "selectedIconPath": "static/tabbar/historyEd.png",
- "text": "历史"
- }, {
- "pagePath": "pages/myCenter/myCenter",
- "iconPath": "static/tabbar/myCenter.png",
- "selectedIconPath": "static/tabbar/myCenterEd.png",
- "text": "我的"
- }]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|