pages.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/login/login",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "登录",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path": "pages/index/index",
  13. "style": {
  14. "navigationBarTitleText": "首页"
  15. }
  16. }
  17. ,{
  18. "path" : "pages/roomOrders/roomOrders",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "",
  22. "enablePullDownRefresh": false,
  23. "navigationStyle": "custom"
  24. }
  25. }
  26. ,{
  27. "path" : "pages/predetermine/predetermine",
  28. "style" :
  29. {
  30. "navigationBarTitleText": "",
  31. "enablePullDownRefresh": false,
  32. "navigationStyle": "custom"
  33. }
  34. }
  35. ,{
  36. "path" : "pages/roomStateDiagram/roomStateDiagram",
  37. "style" :
  38. {
  39. "navigationBarTitleText": "",
  40. "enablePullDownRefresh": false,
  41. "navigationStyle": "custom"
  42. }
  43. }
  44. ,{
  45. "path" : "components/longTermHousingStatus/longTermHousingStatus",
  46. "style" :
  47. {
  48. "navigationBarTitleText": "",
  49. "enablePullDownRefresh": false,
  50. "navigationStyle": "custom"
  51. }
  52. }
  53. ,{
  54. "path" : "pages/roomDetail/roomDetail",
  55. "style" :
  56. {
  57. "navigationBarTitleText": "",
  58. "enablePullDownRefresh": false
  59. }
  60. }
  61. ,{
  62. "path" : "pages/mine/mine",
  63. "style" :
  64. {
  65. "navigationBarTitleText": "",
  66. "enablePullDownRefresh": false
  67. }
  68. }
  69. ,{
  70. "path" : "components/businessAnalysis/businessAnalysis",
  71. "style" :
  72. {
  73. "navigationBarTitleText": "经营分析",
  74. "enablePullDownRefresh": false,
  75. "navigationStyle": "custom"
  76. }
  77. }
  78. ,{
  79. "path" : "components/incomeDetail/incomeDetail",
  80. "style" :
  81. {
  82. "navigationBarTitleText": "",
  83. "enablePullDownRefresh": false,
  84. "navigationStyle": "custom"
  85. }
  86. }
  87. ,{
  88. "path" : "components/roomService/roomService",
  89. "style" :
  90. {
  91. "navigationBarTitleText": "",
  92. "enablePullDownRefresh": false,
  93. "navigationStyle": "custom"
  94. }
  95. }
  96. ],
  97. "globalStyle": {
  98. "navigationBarTextStyle": "black",
  99. "navigationBarTitleText": "酒店管理系统",
  100. "navigationBarBackgroundColor": "#F8F8F8",
  101. "backgroundColor": "#F8F8F8"
  102. },
  103. "tabBar": {
  104. "backgroundColor": "#fff",
  105. "borderStyle": "#00000011",
  106. "selectedColor": "#846FFE",
  107. "fontSize": "12px",
  108. "list": [{
  109. // "iconPath": "static/icon/cookbook_1.svg",
  110. // "selectedIconPath": "static/icon/cookbook.svg",
  111. "pagePath": "pages/index/index",
  112. "text": "首页"
  113. },
  114. {
  115. // "iconPath": "static/icon/health.svg",
  116. // "selectedIconPath": "static/icon/health_1.svg",
  117. "pagePath": "pages/roomStateDiagram/roomStateDiagram",
  118. "text": "房态图"
  119. },
  120. {
  121. // "iconPath": "static/icon/dietician.svg",
  122. // "selectedIconPath": "static/icon/dietician_1.svg",
  123. "pagePath": "pages/roomDetail/roomDetail",
  124. "text": "客房详情"
  125. },
  126. {
  127. // "iconPath": "static/icon/my.svg",
  128. // "selectedIconPath": "static/icon/my_1.svg",
  129. "pagePath": "pages/mine/mine",
  130. "text": "我的"
  131. }
  132. ]
  133. },
  134. "uniIdRouter": {},
  135. "easycom": {
  136. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  137. }
  138. }