pages.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. {
  2. "easycom": {
  3. // 关键步骤3:配置easycom规则
  4. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  5. },
  6. "pages": [{
  7. "path": "pages/index",
  8. "style": {
  9. "navigationBarTitleText": "空白页",
  10. // "navigationStyle": "custom",
  11. "app-plus": {
  12. "titleNView": false
  13. }
  14. }
  15. },
  16. {
  17. "path": "pages/home/index",
  18. "style": {
  19. "navigationBarTitleText": "经销商工作平台",
  20. "app-plus": {
  21. "titleNView": false
  22. }
  23. }
  24. },
  25. {
  26. "path": "pages/login/index",
  27. "style": {
  28. "navigationBarTitleText": "登录",
  29. "app-plus": {
  30. "titleNView": false
  31. }
  32. }
  33. },
  34. {
  35. "path": "pages/msg/index",
  36. "style": {
  37. "navigationBarTitleText": "消息"
  38. }
  39. },
  40. {
  41. "path": "pages/data/index",
  42. "style": {
  43. "navigationBarTitleText": "数据"
  44. }
  45. },
  46. {
  47. "path": "pages/me/index",
  48. "style": {
  49. "navigationBarTitleText": "我的",
  50. "app-plus": {
  51. "titleNView": false //禁用原生导航栏
  52. }
  53. }
  54. },
  55. {
  56. "path": "pages/me/map/index",
  57. "style": {
  58. "navigationBarTitleText": "位置查询"
  59. }
  60. },
  61. {
  62. "path": "pages/me/setting/index",
  63. "style": {
  64. "navigationBarTitleText": "设置"
  65. }
  66. },
  67. {
  68. "path": "pages/me/setting/aboutApp",
  69. "style": {
  70. "navigationBarTitleText": "库比森轮胎"
  71. }
  72. },
  73. {
  74. "path": "pages/home/store/index",
  75. "style": {
  76. "navigationBarTitleText": "门店信息",
  77. "enablePullDownRefresh": false,
  78. "app-plus": {
  79. "titleNView": false //禁用原生导航栏
  80. }
  81. }
  82. },
  83. {
  84. "path": "pages/home/store/details",
  85. "style": {
  86. "navigationBarTitleText": "门店编辑"
  87. }
  88. },
  89. {
  90. "path": "pages/home/store/map/index",
  91. "style": {
  92. "navigationBarTitleText": "地图定位"
  93. }
  94. },
  95. {
  96. "path": "pages/home/claim/index",
  97. "style": {
  98. "navigationBarTitleText": "理赔进度",
  99. "enablePullDownRefresh": false,
  100. "app-plus": {
  101. "titleNView": false //禁用原生导航栏
  102. }
  103. }
  104. },
  105. {
  106. "path": "pages/home/claim/details",
  107. "style": {
  108. "navigationBarTitleText": "轮胎理赔内容"
  109. }
  110. },
  111. {
  112. "path": "pages/home/insurancePolicy/index",
  113. "style": {
  114. "navigationBarTitleText": "保单进度",
  115. "enablePullDownRefresh": false
  116. }
  117. },
  118. {
  119. "path": "pages/home/insurancePolicy/details",
  120. "style": {
  121. "navigationBarTitleText": "轮胎保单内容"
  122. }
  123. },
  124. {
  125. "path": "pages/home/scan/index",
  126. "style": {
  127. "navigationBarTitleText": "扫码出库"
  128. }
  129. }
  130. ],
  131. "globalStyle": {
  132. "navigationBarTextStyle": "white",
  133. // #ifdef H5
  134. "navigationBarBackgroundColor": "#03803B",
  135. // #endif
  136. "app-plus": {
  137. "bounce": "none",
  138. "scrollIndicator": "none",
  139. "titleNView": {
  140. "backgroundImage": "linear-gradient(to bottom, #03803B, #03803B)"
  141. }
  142. }
  143. },
  144. "tabBar": {
  145. "color": "#7C7C7C",
  146. "selectedColor": "#259255",
  147. "borderStyle": "white",
  148. "backgroundColor": "#FFFFFF",
  149. "list": [{
  150. "pagePath": "pages/home/index",
  151. "text": "首页",
  152. "iconPath": "static/images/tabBar/home.png",
  153. "selectedIconPath": "static/images/tabBar/home_selected.png"
  154. },
  155. {
  156. "pagePath": "pages/data/index",
  157. "text": "数据",
  158. "iconPath": "/static/images/tabBar/data.png",
  159. "selectedIconPath": "static/images/tabBar/data_selected.png"
  160. },
  161. {
  162. "pagePath": "pages/msg/index",
  163. "text": "消息",
  164. "iconPath": "static/images/tabBar/msg.png",
  165. "selectedIconPath": "static/images/tabBar/msg_selected.png"
  166. },
  167. {
  168. "pagePath": "pages/me/index",
  169. "text": "我的",
  170. "iconPath": "static/images/tabBar/me.png",
  171. "selectedIconPath": "static/images/tabBar/me_selected.png"
  172. }
  173. ]
  174. }
  175. }