1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "修文农业云公共服务系统",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/complaints/index",
- "style": {
- "navigationBarTitleText": "质量安全投诉"
- }
- },
- {
- "path": "pages/results/index",
- "style": {
- "navigationBarTitleText": "结果页面"
- }
- },
- {
- "path": "pages/complaints/details/index",
- "style": {
- "navigationBarTitleText": "质量安全投诉详情"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "修文农业云公共服务系统",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#F7F8F9"
- }
- }
|