12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "慕尼黑上海电子生产设备展"
- }
- },
- { "path": "pages/news/index" },
-
- { "path": "pages/activity/index" },
- { "path": "pages/activity/detail" },
- { "path": "pages/activity/guest" },
- // { "path": "pages/exhibitor/index" },
- { "path": "pages/exhibitor/exhibit" },
- { "path": "pages/exhibitor/exhibit-detail" },
- { "path": "pages/exhibitor/detail" },
-
- { "path": "pages/user/index" },
- { "path": "pages/user/login" },
- { "path": "pages/user/setting" },
- { "path": "pages/user/info" },
- { "path": "pages/user/info-edit" },
- { "path": "pages/user/like" },
- { "path": "pages/user/favorites" },
- { "path": "pages/user/vote" },
- // 组件页面
- { "path": "pages/index/search" },
- // WEBVIEW
- { "path": "pages/index/webview", "style": { "navigationStyle": "default", "navigationBarTitleText": "加载中...", "navigationBarBackgroundColor": "#332968" }}
- ],
- "globalStyle": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "usingComponents": {
- "van-icon": "/wxcomponents/vant/icon/index",
- "van-empty": "/wxcomponents/vant/empty/index",
- "van-button": "/wxcomponents/vant/button/index",
- "van-dialog": "/wxcomponents/vant/dialog/index"
- }
- },
- "uniIdRouter": {}
- }
|