1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/about/about",
- "style": {
- "navigationBarTitleText": "关于我们"
- // "navigationStyle": "custom"
- }
- }
- ],
- "subPackages": [
- {
- "root": "center",
- "pages": [
- {
- "path": "center",
- "style": {
- "navigationBarTitleText": "我的"
- // "navigationStyle": "custom"
- }
- },
- {
- "path": "resetpass",
- "style": {
- "navigationBarTitleText": "修改密码"
- // "navigationStyle": "custom"
- }
- },
- {
- "path": "checklist",
- "style": {
- "navigationBarTitleText": "核销记录"
- // "navigationStyle": "custom"
- }
- },
- {
- "path": "checkdetails",
- "style": {
- "navigationBarTitleText": "核销详情"
- // "navigationStyle": "custom"
- }
- },
- {
- "path": "checksuccess",
- "style": {
- "navigationBarTitleText": "核销结果"
- // "navigationStyle": "custom"
- }
- },
- {
- "path": "paycode",
- "style": {
- "navigationBarTitleText": "推广码"
- // "navigationStyle": "custom"
- }
- },
- {
- "path": "scan",
- "style": {
- "navigationBarTitleText": "扫描"
- // "navigationStyle": "custom"
- }
- }
- ]
- }
- ],
- "preloadRule": {
- "shopping/productList": {
- "network": "all",
- "packages": ["__APP__"]
- },
- "xushuo/xushuo": {
- "network": "all",
- "packages": ["__APP__"]
- }
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|