pages.json 3.0 KB

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