1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "easycom": {
- "custom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
- "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
- }
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "loading"
- }
- },
- //#ifdef H5
- {
- "path": "pages/index/gzhGo",
- "style": {
- "navigationBarTitleText": "loading"
- }
- },
- // #endif
- {
- "path": "pages/index/checking",
- "style": {
- "navigationBarTitleText": "用户绑定"
- }
- },
- {
- "path": "pages/home/task",
- "style": {
- "navigationBarTitleText": "任务管理",
- "enablePullDownRefresh" : true
- }
- },
- {
- "path": "pages/home/taskDetail",
- "style": {
- "navigationBarTitleText": "任务详情"
- }
- },
- {
- "path": "pages/home/deal",
- "style": {
- "navigationBarTitleText": "任务处理"
- }
- }
- ],
- "globalStyle": {
- //#ifdef H5
- "navigationStyle" : "custom",
- // #endif
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "pageOrientation": "auto"
- }
- }
|