| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "靖安民宿"
- }
- }, {
- "path": "pages/my/my",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/search/search",
- "style": {
- "navigationBarTitleText": "服务大厅",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/setMeal/setMeal",
- "style": {
- "navigationBarTitleText": "精品套餐",
- "enablePullDownRefresh": false
- }
- }
- ],
- "tabBar": {
- "color": "#A6A6A6",
- "selectedColor": "#1E7DFB",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/images/index.png",
- "selectedIconPath": "static/images/index-active.png",
- "text": "首页"
- }, {
- "pagePath": "pages/setMeal/setMeal",
- "iconPath": "static/images/setMeal.png",
- "selectedIconPath": "static/images/setMeal-active.png",
- "text": "套餐"
- },
- {
- "pagePath": "pages/search/search",
- "iconPath": "static/images/search.png",
- "selectedIconPath": "static/images/search-active.png",
- "text": "服务"
- },
- {
- "pagePath": "pages/my/my",
- "iconPath": "static/images/my.png",
- "selectedIconPath": "static/images/my-active.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "靖安民宿",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|