pages.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/my/my",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/home/home",
  17. "style": {
  18. "navigationStyle": "custom"
  19. }
  20. },
  21. {
  22. "path": "pages/order/order",
  23. "style": {
  24. "navigationBarTitleText": "我的订单",
  25. "enablePullDownRefresh": true
  26. }
  27. }
  28. ],
  29. "tabBar": {
  30. "selectedColor": "#a09cc4",
  31. "list": [{
  32. "pagePath": "pages/home/home",
  33. "text": "首页",
  34. "iconPath": "static/home.png",
  35. "selectedIconPath": "static/home_selected.png"
  36. },
  37. {
  38. "pagePath": "pages/order/order",
  39. "text": "订单",
  40. "iconPath": "static/order.png",
  41. "selectedIconPath": "static/order_selected.png"
  42. },
  43. {
  44. "pagePath": "pages/my/my",
  45. "text": "我的",
  46. "iconPath": "static/my.png",
  47. "selectedIconPath": "static/my_selected.png"
  48. }
  49. ]
  50. },
  51. "subPackages": [{
  52. "root": "subpkg",
  53. "pages": [{
  54. "path": "protocol/protocol",
  55. "style": {
  56. "navigationBarTitleText": "使用须知"
  57. }
  58. },
  59. {
  60. "path": "extend/extend",
  61. "style": {
  62. "navigationBarTitleText": "我的订单"
  63. }
  64. },
  65. {
  66. "path": "myAccount/myAccount",
  67. "style": {
  68. "navigationBarTitleText": "我的账户"
  69. }
  70. },
  71. {
  72. "path": "updateUserInfo/updateUserInfo",
  73. "style": {
  74. "navigationBarTitleText": "修改个人信息"
  75. }
  76. },
  77. {
  78. "path": "selectHotel/selectHotel",
  79. "style": {
  80. "navigationBarTitleText": "酒店选择"
  81. }
  82. },
  83. {
  84. "path": "emergencyKey/emergencyKey",
  85. "style": {
  86. "navigationBarTitleText": "手机开门"
  87. }
  88. },
  89. {
  90. "path": "elevatorControl/elevatorControl",
  91. "style": {
  92. "navigationBarTitleText": "梯控二维码"
  93. }
  94. }
  95. ]
  96. }, {
  97. "root": "subpkg_checkin",
  98. "pages": [{
  99. "path": "selectCheckinType/selectCheckinType",
  100. "style": {
  101. "navigationStyle": "custom"
  102. }
  103. },
  104. {
  105. "path": "selectRoomType/selectRoomType",
  106. "style": {
  107. "navigationBarTitleText": "房源类型"
  108. }
  109. },
  110. {
  111. "path": "selectRoom/selectRoom",
  112. "style": {
  113. "navigationBarTitleText": "房间选择"
  114. }
  115. },
  116. {
  117. "path": "addGuest/addGuest",
  118. "style": {
  119. "navigationBarTitleText": "身份信息录入"
  120. }
  121. },
  122. {
  123. "path": "confirmOrder/confirmOrder",
  124. "style": {
  125. "navigationBarTitleText": "订单确认"
  126. }
  127. },
  128. {
  129. "path": "depositPayment/depositPayment",
  130. "style": {
  131. "navigationBarTitleText": "支付页面"
  132. }
  133. },
  134. {
  135. "path": "checkin/checkin",
  136. "style": {
  137. "navigationBarTitleText": "支付结果"
  138. }
  139. }
  140. ]
  141. }],
  142. "globalStyle": {
  143. "navigationBarTextStyle": "white",
  144. "navigationBarTitleText": "uni-app",
  145. "navigationBarBackgroundColor": "#a09cc4"
  146. },
  147. "uniIdRouter": {},
  148. "lazyCodeLoading": "requiredComponents"
  149. }