pages.json 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. {
  2. "pages": [{
  3. "path": "pages/home/recent",
  4. "style": {
  5. "navigationBarTitleText": "最近访问"
  6. }
  7. },
  8. {
  9. "path": "pages/home/index",
  10. "style": {
  11. "navigationBarTitleText": "首页"
  12. }
  13. },
  14. {
  15. "path": "pages/home/category",
  16. "style": {
  17. "navigationBarTitleText": "分类"
  18. }
  19. },
  20. {
  21. "path": "pages/home/shop",
  22. "style": {
  23. "navigationBarTitleText": "门店"
  24. }
  25. },
  26. {
  27. "path": "pages/home/user",
  28. "style": {
  29. "navigationBarTitleText": "我的"
  30. }
  31. },
  32. {
  33. "path": "pages/home/course",
  34. "style": {
  35. "navigationBarTitleText": "课程",
  36. "enablePullDownRefresh": true
  37. }
  38. },
  39. {
  40. "path": "common/redirect",
  41. "style": {
  42. "navigationBarTitleText": "加载中..."
  43. }
  44. },
  45. {
  46. "path": "common/webview",
  47. "style": {
  48. "navigationBarBackgroundColor": "#ffffff",
  49. "navigationBarTextStyle": "black"
  50. }
  51. },
  52. {
  53. "path": "pages/class/index",
  54. "style": {
  55. "navigationBarBackgroundColor": "#ffffff",
  56. "navigationBarTextStyle": "black"
  57. }
  58. },
  59. {
  60. "path": "pages/class/paySuccess",
  61. "style": {
  62. "navigationBarBackgroundColor": "#ffffff",
  63. "navigationBarTextStyle": "black"
  64. }
  65. }
  66. ],
  67. "subPackages": [{
  68. "root": "pages/user",
  69. "pages": [{
  70. "path": "register",
  71. "style": {
  72. "navigationBarTitleText": "注册"
  73. }
  74. },
  75. {
  76. "path": "password",
  77. "style": {
  78. "navigationBarTitleText": "修改密码"
  79. }
  80. }
  81. ]
  82. },
  83. {
  84. "root": "pages/goods",
  85. "pages": [{
  86. "path": "detail",
  87. "style": {
  88. "navigationBarTitleText": "详情"
  89. }
  90. }]
  91. },
  92. {
  93. "root": "pages/pay",
  94. "pages": [{
  95. "path": "index",
  96. "style": {
  97. "navigationBarTitleText": ""
  98. }
  99. }]
  100. },
  101. {
  102. "root": "pages/callback",
  103. "pages": [{
  104. "path": "index"
  105. },
  106. {
  107. "path": "success",
  108. "style": {
  109. "navigationBarTitleText": "支付成功"
  110. }
  111. }
  112. ]
  113. },
  114. {
  115. "root": "pages/coupon",
  116. "pages": [{
  117. "path": "list",
  118. "style": {
  119. "navigationBarTitleText": "优惠券",
  120. "enablePullDownRefresh": true
  121. }
  122. }]
  123. },
  124. {
  125. "root": "pages/order",
  126. "pages": [{
  127. "path": "list",
  128. "style": {
  129. "navigationBarTitleText": "订单列表",
  130. "enablePullDownRefresh": true
  131. }
  132. },
  133. {
  134. "path": "detail",
  135. "style": {
  136. "navigationBarTitleText": "订单列表"
  137. }
  138. },
  139. {
  140. "path": "buy",
  141. "style": {
  142. "navigationBarTitleText": "订单确认"
  143. }
  144. },
  145. {
  146. "path": "comment",
  147. "style": {
  148. "navigationBarTitleText": "评价"
  149. }
  150. }
  151. ]
  152. },
  153. {
  154. "root": "pages/interest",
  155. "pages": [{
  156. "path": "invite",
  157. "style": {
  158. "navigationBarTitleText": "邀请排行",
  159. "enablePullDownRefresh": true
  160. }
  161. },
  162. {
  163. "path": "level",
  164. "style": {
  165. "navigationBarTitleText": "会员等级"
  166. }
  167. }
  168. ]
  169. },
  170. {
  171. "root": "pages/chat",
  172. "pages": [{
  173. "path": "index",
  174. "style": {
  175. "navigationBarTitleText": "客服",
  176. "enablePullDownRefresh": true
  177. }
  178. }]
  179. }
  180. ],
  181. "globalStyle": {
  182. // #ifdef H5
  183. "navigationStyle": "custom",
  184. // #endif
  185. "navigationBarBackgroundColor": "#fff",
  186. "navigationBarTitleText": "花卉宝",
  187. "navigationBarTextStyle": "black"
  188. },
  189. "tabBar": {
  190. "color": "#C0C4CC",
  191. "selectedColor": "#fa436a",
  192. "borderStyle": "black",
  193. "backgroundColor": "#ffffff",
  194. "list": [{
  195. "pagePath": "pages/home/index",
  196. "iconPath": "static/images/common/home-no.png",
  197. "selectedIconPath": "static/images/common/home-is.png",
  198. "text": "首页"
  199. },
  200. {
  201. "pagePath": "pages/home/category",
  202. "iconPath": "static/images/common/category-no.png",
  203. "selectedIconPath": "static/images/common/category-is.png",
  204. "text": "分类"
  205. },
  206. {
  207. "pagePath": "pages/home/course",
  208. "iconPath": "static/images/common/icon_class.png",
  209. "selectedIconPath": "static/images/common/icon_class_active.png",
  210. "text": "课程"
  211. },
  212. {
  213. "pagePath": "pages/home/shop",
  214. "iconPath": "static/images/common/shop-no.png",
  215. "selectedIconPath": "static/images/common/shop-is.png",
  216. "text": "门店"
  217. },
  218. {
  219. "pagePath": "pages/home/user",
  220. "iconPath": "static/images/common/user-no.png",
  221. "selectedIconPath": "static/images/common/user-is.png",
  222. "text": "我的"
  223. }
  224. ]
  225. }
  226. }