| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- {
- "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
- }
- }, {
- "path": "pages/set/set",
- "style": {
- "navigationBarTitleText": "设置",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/common/common",
- "style": {
- "navigationBarTitleText": "常用旅客",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/addOrEdit/addOrEdit",
- "style": {
- "navigationBarTitleText": "添加旅客",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/orderManage/orderManage",
- "style": {
- "navigationBarTitleText": "订单",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/detail/detail",
- "style": {
- "navigationBarTitleText": "民宿详情",
- "enablePullDownRefresh": false
- }
- }
- ],
- "tabBar": {
- "color": "#A6A6A6",
- "selectedColor": "#096562",
- "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": {}
- }
|