pages.json 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "app-plus": {
  8. "animationType": "pop-out",
  9. "animationDuration": "slide-in-right",
  10. "enablePullDownRefresh": true
  11. }
  12. }
  13. }, {
  14. "path": "pages/map/map",
  15. "style": {
  16. "navigationBarTitleText": "IHG地图",
  17. "enablePullDownRefresh": false
  18. }
  19. },
  20. {
  21. "path": "pages/msg/msg",
  22. "style": {
  23. "navigationBarTitleText": "消息",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path" : "pages/my/my",
  29. "style" :
  30. {
  31. "navigationBarTitleText": "我的",
  32. "enablePullDownRefresh": false
  33. }
  34. },
  35. {
  36. "path" : "pages/my/PersonalData/personalData",
  37. "style" :
  38. {
  39. "navigationBarTitleText": "个人信息",
  40. "enablePullDownRefresh": false
  41. }
  42. },
  43. {
  44. "path" : "pages/my/setting/setting",
  45. "style" :
  46. {
  47. "navigationBarTitleText": "系统设置",
  48. "enablePullDownRefresh": false
  49. }
  50. },
  51. {
  52. "path" : "pages/my/myorders/orders",
  53. "style" :
  54. {
  55. "navigationBarTitleText": "我的订单",
  56. "enablePullDownRefresh": false
  57. }
  58. },
  59. {
  60. "path" : "pages/my/protocol/PrivacyPolicy",
  61. "style" :
  62. {
  63. "navigationBarTitleText": "隐私协议",
  64. "enablePullDownRefresh": false
  65. }
  66. },
  67. {
  68. "path" : "pages/my/protocol/UserAgreement",
  69. "style" :
  70. {
  71. "navigationBarTitleText": "用户协议",
  72. "enablePullDownRefresh": false
  73. }
  74. },
  75. {
  76. "path" : "pages/my/verification/verification",
  77. "style" :
  78. {
  79. "navigationBarTitleText": "核销中心",
  80. "enablePullDownRefresh": false
  81. }
  82. },
  83. {
  84. "path" : "pages/my/verification/orderVerification",
  85. "style" :
  86. {
  87. "navigationBarTitleText": "订单核销",
  88. "enablePullDownRefresh": false
  89. }
  90. },
  91. {
  92. "path" : "pages/my/integral/integral",
  93. "style" :
  94. {
  95. "navigationBarTitleText": "积分",
  96. "enablePullDownRefresh": false
  97. }
  98. },
  99. {
  100. "path" : "pages/my/integral/integralRule",
  101. "style" :
  102. {
  103. "navigationBarTitleText": "积分规则",
  104. "enablePullDownRefresh": false
  105. }
  106. },
  107. {
  108. "path" : "pages/my/integral/integralRecord",
  109. "style" :
  110. {
  111. "navigationBarTitleText": "积分记录",
  112. "enablePullDownRefresh": false
  113. }
  114. },
  115. {
  116. "path" : "pages/my/prize/prize",
  117. "style" :
  118. {
  119. "navigationBarTitleText": "奖品",
  120. "enablePullDownRefresh": false
  121. }
  122. },
  123. {
  124. "path" : "pages/my/Kudos/Kudos",
  125. "style" :
  126. {
  127. "navigationBarTitleText": "点赞",
  128. "enablePullDownRefresh": false
  129. }
  130. }
  131. ],
  132. "globalStyle": {
  133. "navigationBarTextStyle": "black", // black or white
  134. "navigationBarTitleText": "",
  135. "navigationBarBackgroundColor": "#FFF"
  136. },
  137. "easycom": {
  138. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue",
  139. "layout": "@/layout/index.vue"
  140. },
  141. "tabBar": {
  142. "custom": true,
  143. "color": "#CBC8C7",
  144. "selectedColor": "#FF6200",
  145. "backgroundColor": "#fff",
  146. "borderStyle": "black",
  147. "display":"none",
  148. "list": [
  149. {
  150. "pagePath": "pages/index/index",
  151. "iconPath": "static/icon/home02.png",
  152. "selectedIconPath": "static/icon/home01.png",
  153. "text": "首页"
  154. },
  155. {
  156. "pagePath": "pages/map/map",
  157. "iconPath": "static/icon/map02.png",
  158. "selectedIconPath": "static/icon/map01.png",
  159. "text": "IHG地图"
  160. },
  161. {
  162. "pagePath": "pages/msg/msg",
  163. "iconPath": "static/icon/msg02.png",
  164. "selectedIconPath": "static/icon/msg01.png",
  165. "text": "消息"
  166. },
  167. {
  168. "pagePath": "pages/my/my",
  169. "iconPath": "static/icon/my02.png",
  170. "selectedIconPath": "static/icon/my01.png",
  171. "text": "我的"
  172. }
  173. ]
  174. }
  175. }