123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/verify-code",
- "style": {
- "navigationBarTitleText": "验证码登录",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/discover/index",
- "style": {
- "navigationBarTitleText": "发现",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/message/index",
- "style": {
- "navigationBarTitleText": "消息",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/mine/index",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/search/index",
- "style": {
- "navigationBarTitleText": "课程搜索"
- }
- },
- {
- "path": "pages/calendar/index",
- "style": {
- "navigationBarTitleText": "课程日历"
- }
- },
- {
- "path": "pages/mine/profile",
- "style": { "navigationBarTitleText": "个人信息" }
- },
- {
- "path": "pages/mine/recycle",
- "style": { "navigationBarTitleText": "回收站" }
- },
- {
- "path": "pages/mine/notify",
- "style": { "navigationBarTitleText": "通知设置" }
- },
- {
- "path": "pages/mine/feedback",
- "style": { "navigationBarTitleText": "意见反馈" }
- },
- {
- "path": "pages/mine/service",
- "style": { "navigationBarTitleText": "在线客服" }
- },
- {
- "path": "pages/mine/about",
- "style": { "navigationBarTitleText": "了解小鹅通" }
- },
- {
- "path": "pages/mine/setting",
- "style": { "navigationBarTitleText": "设置" }
- },
- {
- "path": "pages/message/selected",
- "style": { "navigationBarTitleText": "课程精选" }
- },
- {
- "path" : "pages/mine/Merchant",
- "style" :
- {
- "navigationBarTitleText" : "商家后台管理"
- }
- },
- {
- "path" : "pages/mine/changePhone",
- "style" :
- {
- "navigationBarTitleText" : "更换手机号"
- }
- },
- {
- "path" : "pages/mine/unbindWechat",
- "style" :
- {
- "navigationBarTitleText" : "解绑微信"
- }
- },
- {
- "path" : "pages/mine/setPassword",
- "style" :
- {
- "navigationBarTitleText" : "设置密码"
- }
- },
- {
- "path" : "pages/mine/cancelAccount",
- "style" :
- {
- "navigationBarTitleText" : "账号注销"
- }
- },
- {
- "path": "pages/course/detail",
- "style": { "navigationBarTitleText": "课程详情" }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "小鹅通",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {},
- "tabBar": {
- "color": "#888",
- "selectedColor": "#3498db",
- "backgroundColor": "#fff",
- "borderStyle": "black",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home_selected.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/discover/index",
- "iconPath": "static/tabbar/discover.png",
- "selectedIconPath": "static/tabbar/discover_selected.png",
- "text": "发现"
- },
- {
- "pagePath": "pages/message/index",
- "iconPath": "static/tabbar/message.png",
- "selectedIconPath": "static/tabbar/message_selected.png",
- "text": "消息"
- },
- {
- "pagePath": "pages/mine/index",
- "iconPath": "static/tabbar/mine.png",
- "selectedIconPath": "static/tabbar/mine_selected.png",
- "text": "我的"
- }
- ]
- }
- }
|