| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- }
- ,{
- "path" : "pages/roomOrders/roomOrders",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
-
- }
- ,{
- "path" : "pages/predetermine/predetermine",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
-
- }
- ,{
- "path" : "pages/roomStateDiagram/roomStateDiagram",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
-
- }
- ,{
- "path" : "components/longTermHousingStatus/longTermHousingStatus",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
-
- }
- ,{
- "path" : "pages/roomDetail/roomDetail",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/mine/mine",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "components/businessAnalysis/businessAnalysis",
- "style" :
- {
- "navigationBarTitleText": "经营分析",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
-
- }
- ,{
- "path" : "components/incomeDetail/incomeDetail",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
-
- }
-
- }
- ,{
- "path" : "components/roomService/roomService",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "酒店管理系统",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "backgroundColor": "#fff",
- "borderStyle": "#00000011",
- "selectedColor": "#846FFE",
- "fontSize": "12px",
- "list": [{
- // "iconPath": "static/icon/cookbook_1.svg",
- // "selectedIconPath": "static/icon/cookbook.svg",
- "pagePath": "pages/index/index",
- "text": "首页"
- },
- {
- // "iconPath": "static/icon/health.svg",
- // "selectedIconPath": "static/icon/health_1.svg",
- "pagePath": "pages/roomStateDiagram/roomStateDiagram",
- "text": "房态图"
- },
- {
- // "iconPath": "static/icon/dietician.svg",
- // "selectedIconPath": "static/icon/dietician_1.svg",
- "pagePath": "pages/roomDetail/roomDetail",
- "text": "客房详情"
- },
- {
- // "iconPath": "static/icon/my.svg",
- // "selectedIconPath": "static/icon/my_1.svg",
- "pagePath": "pages/mine/mine",
- "text": "我的"
- }
- ]
- },
- "uniIdRouter": {},
- "easycom": {
- "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
- }
- }
|