1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "components/login/Login",
- "style" : {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/index/Index",
- "style": {
- "navigationBarTitleText": "监视"
- }
- }
- ,{
- "path" : "pages/analysis/Analysis",
- "style" : {
- "navigationBarTitleText": "分析"
- }
- }
- ,{
- "path" : "pages/forecast/Forecast",
- "style" : {
- "navigationBarTitleText": "预测"
- }
- },{
- "path" : "pages/task/Task",
- "style" : {
- "navigationBarTitleText": "任务"
- }
- },
- {
- "path": "pages/mine/Mine",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path" : "components/detail/Detail",
- "style" : {}
- }
-
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "sis手机端",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "navigationStyle": "custom"
- },
- "tabBar": {
- "color": "#DEDFE3",
- "selectedColor": "white",
- "borderStyle": "black",
- "backgroundColor": "#3D6C8A",
- "list": [{
- "pagePath": "pages/index/Index",
- "iconPath": "static/picture/indexGray.png",
- "selectedIconPath": "static/picture/index.png",
- "text": "监视"
- }, {
- "pagePath": "pages/analysis/Analysis",
- "iconPath": "static/picture/analysisGray.png",
- "selectedIconPath": "static/picture/analysis.png",
- "text": "分析"
- }, {
- "pagePath": "pages/forecast/Forecast",
- "iconPath": "static/picture/forecastGray.png",
- "selectedIconPath": "static/picture/forecast.png",
- "text": "预测"
- }, {
- "pagePath": "pages/task/Task",
- "iconPath": "static/picture/taskGray.png",
- "selectedIconPath": "static/picture/task.png",
- "text": "任务"
- },{
- "pagePath": "pages/mine/Mine",
- "iconPath": "static/picture/mineGray.png",
- "selectedIconPath": "static/picture/mine.png",
- "text": "我"
- }]
- }
- }
|