pages.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "授权中",
  7. "enablePullDownRefresh": false
  8. }
  9. },
  10. {
  11. "path": "pages/home/home",
  12. "style": {
  13. "navigationBarTitleText": "靖安民宿"
  14. }
  15. }, {
  16. "path": "pages/my/my",
  17. "style": {
  18. "navigationBarTitleText": "我的",
  19. "enablePullDownRefresh": false,
  20. "navigationStyle": "custom"
  21. }
  22. }, {
  23. "path": "pages/search/search",
  24. "style": {
  25. "navigationBarTitleText": "服务大厅",
  26. "enablePullDownRefresh": false
  27. }
  28. }, {
  29. "path": "pages/setMeal/setMeal",
  30. "style": {
  31. "navigationBarTitleText": "精品套餐",
  32. "enablePullDownRefresh": false
  33. }
  34. }, {
  35. "path": "pages/set/set",
  36. "style": {
  37. "navigationBarTitleText": "设置",
  38. "enablePullDownRefresh": false
  39. }
  40. }, {
  41. "path": "pages/common/common",
  42. "style": {
  43. "navigationBarTitleText": "常用旅客",
  44. "enablePullDownRefresh": false
  45. }
  46. }, {
  47. "path": "pages/addOrEdit/addOrEdit",
  48. "style": {
  49. "navigationBarTitleText": "添加旅客",
  50. "enablePullDownRefresh": false
  51. }
  52. }, {
  53. "path": "pages/orderManage/orderManage",
  54. "style": {
  55. "navigationBarTitleText": "订单",
  56. "enablePullDownRefresh": false
  57. }
  58. }, {
  59. "path": "pages/detail/detail",
  60. "style": {
  61. "navigationBarTitleText": "民宿详情",
  62. "enablePullDownRefresh": false
  63. }
  64. }, {
  65. "path": "pages/detailInfo/detailInfo",
  66. "style": {
  67. "navigationBarTitleText": "设施详情",
  68. "enablePullDownRefresh": false,
  69. "navigationStyle": "custom"
  70. }
  71. }, {
  72. "path": "pages/pay/pay",
  73. "style": {
  74. "navigationBarTitleText": "支付订单",
  75. "enablePullDownRefresh": false
  76. }
  77. }, {
  78. "path": "pages/affirmOrder/affirmOrder",
  79. "style": {
  80. "navigationBarTitleText": "民宿名称",
  81. "enablePullDownRefresh": false,
  82. "navigationStyle": "custom"
  83. }
  84. }, {
  85. "path": "pages/orderDetail/orderDetail",
  86. "style": {
  87. "navigationBarTitleText": "订单详情",
  88. "enablePullDownRefresh": false,
  89. "navigationStyle": "custom"
  90. }
  91. }, {
  92. "path": "pages/payStatus/payStatus",
  93. "style": {
  94. "navigationBarTitleText": "支付订单",
  95. "enablePullDownRefresh": false
  96. }
  97. }, {
  98. "path": "pages/photo/photo",
  99. "style": {
  100. "navigationBarTitleText": "个人头像",
  101. "enablePullDownRefresh": false
  102. }
  103. }
  104. ],
  105. "tabBar": {
  106. "color": "#A6A6A6",
  107. "selectedColor": "#096562",
  108. "borderStyle": "black",
  109. "backgroundColor": "#ffffff",
  110. "list": [{
  111. "pagePath": "pages/home/home",
  112. "iconPath": "static/images/index.png",
  113. "selectedIconPath": "static/images/index-active.png",
  114. "text": "首页"
  115. },
  116. // {
  117. // "pagePath": "pages/setMeal/setMeal",
  118. // "iconPath": "static/images/setMeal.png",
  119. // "selectedIconPath": "static/images/setMeal-active.png",
  120. // "text": "套餐"
  121. // },
  122. // {
  123. // "pagePath": "pages/search/search",
  124. // "iconPath": "static/images/search.png",
  125. // "selectedIconPath": "static/images/search-active.png",
  126. // "text": "服务"
  127. // },
  128. {
  129. "pagePath": "pages/my/my",
  130. "iconPath": "static/images/my.png",
  131. "selectedIconPath": "static/images/my-active.png",
  132. "text": "我的"
  133. }
  134. ]
  135. },
  136. "globalStyle": {
  137. "navigationBarTextStyle": "black",
  138. "navigationBarTitleText": "靖安民宿",
  139. "navigationBarBackgroundColor": "#F8F8F8",
  140. "backgroundColor": "#F8F8F8"
  141. },
  142. "uniIdRouter": {}
  143. }