| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "阿拉丁神灯",
- "navigationStyle":"custom"
- }
- }
- ,{
- "path" : "pages/chat/chat",
- "style" : {}
- }
- ,{
- "path" : "pages/chat/chatDetail/chatDetail",
- "style" : {}
- }
- ,{
- "path" : "pages/selfInfo/selfInfo",
- "style" : {
- "navigationBarTitleText": "我的"
- }
- }
- ,{
- "path" : "pages/selfInfo/rechargeRecord/rechargeRecord",
- "style" : {
- "navigationBarTitleText": "充值记录"
- }
- },
- {
- "path" : "pages/selfInfo/payList/payList",
- "style" : {
- "navigationBarTitleText": "套餐"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "mini_rabot",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- }
|