| @@ -1,25 +1,25 @@ | |||||
| { | { | ||||
| "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages | "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages | ||||
| { | { | ||||
| "path": "pages/index/index", | |||||
| "path": "pages/uploadPhoto/uploadPhoto", | |||||
| "style": { | "style": { | ||||
| "navigationBarTitleText": "智像" | "navigationBarTitleText": "智像" | ||||
| } | } | ||||
| }, | }, | ||||
| { | { | ||||
| "path": "pages/index/buyCoin", | |||||
| "path": "pages/index/index", | |||||
| "style": { | "style": { | ||||
| "navigationBarTitleText": "购买金币" | |||||
| "navigationBarTitleText": "智像" | |||||
| } | } | ||||
| }, | }, | ||||
| { | { | ||||
| "path": "pages/login/index", | |||||
| "path": "pages/index/buyCoin", | |||||
| "style": { | "style": { | ||||
| "navigationBarTitleText": "智像" | |||||
| "navigationBarTitleText": "购买金币" | |||||
| } | } | ||||
| }, | }, | ||||
| { | { | ||||
| "path": "pages/uploadPhoto/uploadPhoto", | |||||
| "path": "pages/login/index", | |||||
| "style": { | "style": { | ||||
| "navigationBarTitleText": "智像" | "navigationBarTitleText": "智像" | ||||
| } | } | ||||
| @@ -88,9 +88,28 @@ | |||||
| } | } | ||||
| }, | }, | ||||
| "globalStyle": { | "globalStyle": { | ||||
| "navigationBarTextStyle": "black", | |||||
| "navigationBarTextStyle": "white", | |||||
| "navigationBarTitleText": "智像", | "navigationBarTitleText": "智像", | ||||
| "navigationBarBackgroundColor": "#FFF", | |||||
| "backgroundColor": "#FFF" | |||||
| "navigationBarBackgroundColor": "#333333", | |||||
| "backgroundColor": "#ffffff" | |||||
| }, | |||||
| "tabBar": { | |||||
| "color": "#ffffff", | |||||
| "selectedColor": "#ff4f00", | |||||
| "backgroundColor": "#333333", | |||||
| "list": [ | |||||
| { | |||||
| "pagePath": "pages/uploadPhoto/uploadPhoto", | |||||
| "text": "创作", | |||||
| "iconPath": "static/creating.png", | |||||
| "selectedIconPath": "static/creating_selected.png" | |||||
| }, | |||||
| { | |||||
| "pagePath": "pages/index/index", | |||||
| "text": "我的", | |||||
| "iconPath": "static/aboutMe.png", | |||||
| "selectedIconPath": "static/aboutMe_selected.png" | |||||
| } | |||||
| ] | |||||
| } | } | ||||
| } | } | ||||