| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "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/selfDetail/selfDetail",
- "style" : {}
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "mini_rabot",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- }
|