| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://doc.dcloud.net.cn/uni-app-x/collocation/pagesjson.html
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/index/my",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/index/therapy",
- "style": {
- "navigationBarTitleText": "理疗"
- }
- },
- {
- "path": "pages/index/order",
- "style": {
- "navigationBarTitleText": "预约"
- }
- },
- {
- "path": "pages/index/merchant",
- "style": {
- "navigationBarTitleText": "商户"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "小丁到家--上门按摩",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页"
- },{
- "pagePath": "pages/index/therapy",
- "text": "理疗"
- },{
- "pagePath": "pages/index/order",
- "text": "预约"
- },{
- "pagePath": "pages/index/merchant",
- "text": "商户"
- },
- {
- "pagePath": "pages/index/my",
- "text": "我的"
- },
- ]
- "uniIdRouter": {}
- }
|