pages.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "奥莱优品",
  7. "navigationBarBackgroundColor": "#ffffff",
  8. "navigationBarTextStyle": "black"
  9. }
  10. },{
  11. "path" : "pages/order/order",
  12. "style" :
  13. {
  14. "navigationBarTitleText" : "订单中心",
  15. "navigationBarBackgroundColor": "#ffffff",
  16. "navigationBarTextStyle": "black"
  17. }
  18. },
  19. {
  20. "path" : "pages/user/user",
  21. "style" :
  22. {
  23. "navigationBarTitleText" : "我的",
  24. "navigationBarBackgroundColor": "#007aff",
  25. "navigationBarTextStyle": "white"
  26. }
  27. },
  28. {
  29. "path" : "pages/auth/login",
  30. "style" :
  31. {
  32. "navigationBarTitleText" : "授权登录"
  33. }
  34. },
  35. {
  36. "path" : "pages/service/service",
  37. "style" :
  38. {
  39. "navigationBarTitleText" : "客服中心",
  40. "navigationBarBackgroundColor": "#ffffff",
  41. "navigationBarTextStyle": "black"
  42. }
  43. },
  44. {
  45. "path" : "pages/goods/detail",
  46. "style" :
  47. {
  48. "navigationBarTitleText" : "商品详情",
  49. "navigationBarBackgroundColor": "#ffffff",
  50. "usingComponents": {
  51. "pay-button-sdk": "tta5a3d31e3aecfb9b11://pay-button"
  52. }
  53. }
  54. },
  55. {
  56. "path" : "pages/order/detail",
  57. "style" :
  58. {
  59. "navigationBarTitleText" : "订单详情",
  60. "navigationBarBackgroundColor": "#ffffff",
  61. "navigationBarTextStyle": "black",
  62. "usingComponents": {
  63. "pay-button-sdk": "tta5a3d31e3aecfb9b11://pay-button"
  64. }
  65. }
  66. },
  67. {
  68. "path" : "pages/user/coupon/coupon",
  69. "style" :
  70. {
  71. "navigationBarTitleText" : "",
  72. "navigationBarBackgroundColor": "#ffffff"
  73. }
  74. },
  75. {
  76. "path" : "pages/user/profile",
  77. "style" :
  78. {
  79. "navigationBarTitleText" : "",
  80. "navigationBarBackgroundColor": "#ffffff"
  81. }
  82. },
  83. {
  84. "path" : "pages/user/address/address",
  85. "style" :
  86. {
  87. "navigationBarTitleText" : "",
  88. "navigationBarBackgroundColor": "#ffffff"
  89. }
  90. },
  91. {
  92. "path" : "pages/user/license",
  93. "style" :
  94. {
  95. "navigationBarTitleText" : "资质中心",
  96. "navigationBarBackgroundColor": "#007aff",
  97. "navigationBarTextStyle": "white"
  98. }
  99. },
  100. {
  101. "path": "pages/service/chat/chat",
  102. "style": {
  103. "navigationBarTitleText": ""
  104. }
  105. },
  106. {
  107. "path": "pages/index/search",
  108. "style": {
  109. "navigationBarTitleText": ""
  110. }
  111. },
  112. {
  113. "path": "pages/order/refund",
  114. "style": {
  115. "navigationBarTitleText": "申请退款",
  116. "navigationBarBackgroundColor": "#ffffff",
  117. "backgroundColor": "#f8f8f8",
  118. "usingComponents": {
  119. "pay-button-sdk": "tta5a3d31e3aecfb9b11://pay-button"
  120. }
  121. }
  122. },
  123. {
  124. "path": "pages/order/complaint/complaint",
  125. "style": {
  126. "navigationBarTitleText": "交易投诉",
  127. "navigationBarBackgroundColor": "#ffffff"
  128. }
  129. },
  130. {
  131. "path": "pages/web/web",
  132. "style": {
  133. "navigationBarTitleText": ""
  134. }
  135. },
  136. {
  137. "path": "pages/user/complaint/complaint",
  138. "style": {
  139. "navigationBarTitleText": "我的投诉",
  140. "navigationBarBackgroundColor": "#ffffff",
  141. "navigationBarTextStyle": "black"
  142. }
  143. },
  144. {
  145. "path": "pages/user/complaint/detail",
  146. "style": {
  147. "navigationBarTitleText": "投诉详情",
  148. "navigationBarBackgroundColor": "#ffffff",
  149. "navigationBarTextStyle": "black"
  150. }
  151. }
  152. ],
  153. "tabBar": {
  154. "backgroundColor": "#ffffff",
  155. "color": "#999999",
  156. "selectedColor": "#007aff",
  157. "list": [
  158. {
  159. "iconPath": "/static/image/home.png",
  160. "pagePath": "pages/index/index",
  161. "text": "首页",
  162. "selectedIconPath": "/static/image/home-fill.png"
  163. },
  164. {
  165. "iconPath": "/static/image/order.png",
  166. "pagePath": "pages/order/order",
  167. "text": "订单",
  168. "selectedIconPath": "/static/image/order-fill.png"
  169. },
  170. {
  171. "iconPath": "/static/image/kf.png",
  172. "pagePath": "pages/service/service",
  173. "text": "消息",
  174. "selectedIconPath": "/static/image/kf-fill.png"
  175. },
  176. {
  177. "iconPath": "/static/image/user.png",
  178. "pagePath": "pages/user/user",
  179. "text": "我的",
  180. "selectedIconPath": "/static/image/user-fill.png"
  181. }
  182. ]
  183. },
  184. "globalStyle": {
  185. "navigationBarTextStyle": "black",
  186. "navigationBarTitleText": "涤斐先生",
  187. "navigationBarBackgroundColor": "#ffffff",
  188. "backgroundColor": "#F8F8F8"
  189. },
  190. "uniIdRouter": {},
  191. "navigateToMiniProgramAppIdList":["ttfdf88b4562fa270b01","tta561d3dc3a7b1eab01"]
  192. }