123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "app-plus": {
- "softinputMode": "adjustResize"
- }
- }
- },
- {
- "path": "pages/reportForm/index",
- "style": {
- "navigationBarTitleText": "报表",
- "backgroundColor": "#2c3e50",
- "app-plus": {
- "softinputMode": "adjustResize"
- },
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "pages/message/index",
- "style": {
- "navigationBarTitleText": "消息",
- "app-plus": {
- "softinputMode": "adjustResize"
- },
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "pages/user/index",
- "style": {
- "navigationBarTitleText": "我的",
- "app-plus": {
- "softinputMode": "adjustResize"
- }
- }
- },
- {
- "path": "pages/reportForm/report-detail/index",
- "style": {
- "navigationBarTitleText": "报表详情",
- "app-plus": {
- "softinputMode": "adjustResize"
- }
- }
- },
- {
- "path": "pages/message/msg-detail/index",
- "style": {
- "navigationBarTitleText": "消息详情",
- "app-plus": {
- "softinputMode": "adjustResize"
- }
- }
- },
- {
- "path": "pages/reportForm/report-detail/recordDetail",
- "style": {
- "navigationBarTitleText": "运行详情",
- "app-plus": {
- "softinputMode": "adjustResize"
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "Easy Industrial Report",
- "navigationBarBackgroundColor": "#2c3e50",
- "navigationStyle": "custom",
- "backgroundColor": "#2c3e50"
- },
- "tabBar": {
- "iconfontSrc": "static/fonts/iconfont.ttf",
- "list": [{
- "pagePath": "pages/reportForm/index",
- "text": "报表",
- "iconfont": {
- "text": "\ue663",
- "selectedText":"\ue665"
- }
- }, {
- "pagePath": "pages/message/index",
- "text": "消息",
- "iconfont": {
- "text": "\ue620",
- "selectedText":"\ue61e"
- }
- }, {
- "pagePath": "pages/user/index",
- "text": "我的",
- "iconfont": {
- "text": "\ue628",
- "selectedText":"\ue614"
- }
- }],
- "color": "#2c3e50"
- },
- "uniIdRouter": {}
- }
|