1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "慕尼黑上海电子生产设备展"
- }
- },
- { "path": "pages/news/index", "style": { "navigationBarTitleText": "新闻" }},
- // 活动模块
- { "path": "pages/activity/index" , "style": { "navigationBarTitleText": "同期活动" }},
- { "path": "pages/activity/detail", "style": { "navigationBarTitleText": "同期详情" }},
- { "path": "pages/activity/guest", "style": { "navigationBarTitleText": "演讲嘉宾" }},
- // 展商模块
- // { "path": "pages/exhibitor/index" },
- { "path": "pages/exhibitor/exhibit", "style": { "navigationBarTitleText": "展品信息" }},
- { "path": "pages/exhibitor/exhibit-detail", "style": { "navigationBarTitleText": "展品详情" }},
- { "path": "pages/exhibitor/detail", "style": { "navigationBarTitleText": "展商详情" }},
- // 用户模块
- { "path": "pages/user/index", "style": { "navigationBarTitleText": "个人中心" }},
- { "path": "pages/user/login", "style": { "navigationBarTitleText": "登录" } },
- { "path": "pages/user/setting", "style": { "navigationBarTitleText": "设置" }},
- { "path": "pages/user/info", "style": { "navigationBarTitleText": "个人信息" }},
- { "path": "pages/user/info-edit", "style": { "navigationBarTitleText": "修改个人信息" }},
- { "path": "pages/user/like", "style": { "navigationBarTitleText": "我的点赞" }},
- { "path": "pages/user/favorites", "style": { "navigationBarTitleText": "我的收藏" }},
- { "path": "pages/user/vote", "style": { "navigationBarTitleText": "我的投票" }},
- // 组件页面
- { "path": "pages/index/search", "style": { "navigationBarTitleText": "搜索" }},
- // WEBVIEW
- { "path": "pages/index/webview", "style": { "navigationStyle": "default", "navigationBarTitleText": "加载中...", "navigationBarBackgroundColor": "#332968" }}
- ],
- "globalStyle": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "慕尼黑上海电子生产设备展",
- "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": {}
- }
|