| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/autoLogin",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "transparentTitle": "always"
- }
- },
- {
- "path": "pages/map/index",
- "style": {
- "navigationBarTitleText": "灌区地图"
- }
- },
- {
- "path": "pages/message/index",
- "style": {
- "navigationBarTitleText": "消息"
- }
- },
- {
- "path": "pages/user/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/index/pages/Deploy/index",
- "style": {
- "navigationBarTitleText": "调配计划",
- "navigationBarBackgroundColor": "#e9f3fd"
- }
- },
- {
- "path": "pages/index/pages/Reservoir/index",
- "style": {
- "navigationBarTitleText": "水库水情",
- "navigationBarBackgroundColor": "#e9f3fd"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "黑龙滩",
- "navigationBarBackgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#333",
- "selectedColor": "#2D74E7",
- "backgroundColor": "#fff",
- "fontSize": "14px",
- "height": "63px",
- "borderStyle": "white",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "static/images/tabbar/home.svg",
- "selectedIconPath": "static/images/tabbar/home-a.svg"
- },
- {
- "pagePath": "pages/map/index",
- "text": "地图",
- "iconPath": "static/images/tabbar/map.svg",
- "selectedIconPath": "static/images/tabbar/map-a.svg"
- },
- {
- "pagePath": "pages/message/index",
- "text": "消息",
- "iconPath": "static/images/tabbar/message.svg",
- "selectedIconPath": "static/images/tabbar/message-a.svg"
- },
- {
- "pagePath": "pages/user/index",
- "text": "我的",
- "iconPath": "static/images/tabbar/user.svg",
- "selectedIconPath": "static/images/tabbar/user-a.svg"
- }
- ]
- },
- "uniIdRouter": {}
- }
|