pages.json 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. {
  2. "tabBar": {
  3. "color": "#000000",
  4. "selectedColor": "#fa2209",
  5. "borderStyle": "black",
  6. "backgroundColor": "#ffffff",
  7. "list": [
  8. {
  9. "pagePath": "pages/index/index",
  10. "iconPath": "static/tabbar/home.png",
  11. "selectedIconPath": "static/tabbar/home-active.png",
  12. "text": "首页"
  13. },
  14. {
  15. "pagePath": "pages/user/index",
  16. "iconPath": "static/tabbar/user.png",
  17. "selectedIconPath": "static/tabbar/user-active.png",
  18. "text": "我的"
  19. }
  20. ]
  21. },
  22. "pages": [
  23. // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  24. {
  25. "path": "pages/empty",
  26. "style": {
  27. "navigationBarTitleText": "验证身份"
  28. }
  29. },
  30. {
  31. "path": "pages/index/index",
  32. "style": {
  33. "enablePullDownRefresh": true
  34. }
  35. },
  36. {
  37. "path": "pages/category/index",
  38. "style": {
  39. "navigationBarTitleText": "全部分类"
  40. }
  41. },
  42. {
  43. "path": "pages/cart/index",
  44. "style": {
  45. "navigationBarTitleText": "购物车"
  46. }
  47. },
  48. {
  49. "path": "pages/user/index",
  50. "style": {
  51. "navigationBarTitleText": "个人中心",
  52. "enablePullDownRefresh": true,
  53. "navigationStyle": "custom"
  54. }
  55. },
  56. {
  57. "path": "pages/user/realname/index",
  58. "style": {
  59. "navigationBarTitleText": "实名认证"
  60. }
  61. },
  62. {
  63. "path": "pages/user/activatorder/index",
  64. "style": {
  65. "navigationBarTitleText": "激活订单"
  66. }
  67. },
  68. {
  69. "path": "pages/user/userxieyi/index",
  70. "style": {
  71. "navigationBarTitleText": "用户协议"
  72. }
  73. },
  74. // **企业客户端
  75. {
  76. "path": "pages/firm/index",
  77. "style": {
  78. "navigationBarTitleText": "企业客户端",
  79. "enablePullDownRefresh": true,
  80. "navigationStyle": "custom"
  81. }
  82. },
  83. {
  84. "path": "pages/firm/home/index",
  85. "style": {
  86. "navigationBarTitleText": "企业客户端",
  87. "enablePullDownRefresh": true,
  88. "navigationStyle": "custom"
  89. }
  90. },
  91. {
  92. "path": "pages/firm/authentication/index",
  93. "style": {
  94. "navigationBarTitleText": "企业实名认证"
  95. }
  96. },
  97. // **企业客户端** - end
  98. // **用户激活端口** - static
  99. {
  100. "path": "pages/activationcode/index",
  101. "style": {
  102. "enablePullDownRefresh": false,
  103. "navigationStyle": "custom"
  104. }
  105. },
  106. // **用户激活端口** - end
  107. // **用户条形码扫描** - static
  108. {
  109. "path": "pages/txmLogin/index",
  110. "style": {
  111. "navigationBarTitleText": "路由器录入",
  112. "enablePullDownRefresh": false,
  113. "navigationStyle": "custom"
  114. }
  115. },
  116. {
  117. "path": "pages/tiaoxingma/index",
  118. "style": {
  119. "navigationBarTitleText": "路由器录入",
  120. "enablePullDownRefresh": false,
  121. "navigationStyle": "custom"
  122. }
  123. },
  124. // **用户条形码扫描** - end
  125. // **用户商场购物端口** - static
  126. // 手动输入企业码页面
  127. {
  128. "path": "pages/order/center",
  129. "style": {
  130. "navigationBarTitleText": "订单中心",
  131. "enablePullDownRefresh": true
  132. }
  133. },
  134. {
  135. "path": "pages/firm/order/index",
  136. "style": {
  137. "navigationBarTitleText": "分销订单",
  138. "enablePullDownRefresh": true
  139. }
  140. },
  141. {
  142. "path": "pages/order/index",
  143. "style": {
  144. "navigationBarTitleText": "我的订单",
  145. "enablePullDownRefresh": true
  146. }
  147. },
  148. {
  149. "path": "pages/order/detail",
  150. "style": {
  151. "navigationBarTitleText": "订单详情",
  152. "navigationBarTextStyle": "white",
  153. "navigationBarBackgroundColor": "#e8c269"
  154. }
  155. },
  156. {
  157. "path": "pages/authentication/index",
  158. "style": {
  159. "enablePullDownRefresh": true,
  160. "navigationStyle": "custom"
  161. }
  162. },
  163. {
  164. "path": "pages/custom/index",
  165. "style": {
  166. "enablePullDownRefresh": true
  167. }
  168. },
  169. {
  170. "path": "pages/search/index",
  171. "style": {
  172. "navigationBarTitleText": "商品搜索"
  173. }
  174. },
  175. {
  176. "path": "pages/login/index",
  177. "style": {
  178. "navigationBarTitleText": "会员登录"
  179. }
  180. },
  181. {
  182. "path": "pages/user/bind/index",
  183. "style": {
  184. "navigationBarTitleText": "绑定手机"
  185. }
  186. },
  187. {
  188. "path": "pages/user/certificate/index",
  189. "style": {
  190. "navigationBarTitleText": "绑定手机"
  191. }
  192. },
  193. {
  194. "path": "pages/user/personal/index",
  195. "style": {
  196. "navigationBarTitleText": "个人信息"
  197. }
  198. },
  199. {
  200. "path": "pages/article/index",
  201. "style": {
  202. "navigationBarTitleText": "资讯列表"
  203. }
  204. },
  205. {
  206. "path": "pages/article/detail",
  207. "style": {
  208. "navigationBarTitleText": "资讯详情"
  209. }
  210. },
  211. {
  212. "path": "pages/help/index",
  213. "style": {
  214. "navigationBarTitleText": "帮助中心"
  215. }
  216. },
  217. {
  218. "path": "pages/coupon/index",
  219. "style": {
  220. "navigationBarTitleText": "领券中心"
  221. }
  222. },
  223. {
  224. "path": "pages/goods/list",
  225. "style": {
  226. "navigationBarTitleText": "商品列表",
  227. "enablePullDownRefresh": true
  228. }
  229. },
  230. {
  231. "path": "pages/goods/detail",
  232. "style": {
  233. "navigationBarTitleText": "商品详情页"
  234. }
  235. },
  236. {
  237. "path": "pages/checkout/index",
  238. "style": {
  239. "navigationBarTitleText": "订单结算台"
  240. }
  241. },
  242. {
  243. "path" : "pages/invoice/index",
  244. "style" :
  245. {
  246. "navigationBarTitleText" : "发票管理"
  247. }
  248. }
  249. // {
  250. // "path": "pages/comment/index",
  251. // "style": {
  252. // "navigationBarTitleText": "商品评价页"
  253. // }
  254. // },
  255. // {
  256. // "path": "pages/my-coupon/index",
  257. // "style": {
  258. // "navigationBarTitleText": "我的优惠券"
  259. // }
  260. // },
  261. // {
  262. // "path": "pages/address/index",
  263. // "style": {
  264. // "navigationBarTitleText": "收货地址"
  265. // }
  266. // },
  267. // {
  268. // "path": "pages/address/create",
  269. // "style": {
  270. // "navigationBarTitleText": "新增收货地址"
  271. // }
  272. // },
  273. // {
  274. // "path": "pages/address/update",
  275. // "style": {
  276. // "navigationBarTitleText": "编辑收货地址"
  277. // }
  278. // },
  279. // {
  280. // "path": "pages/points/log",
  281. // "style": {
  282. // "navigationBarTitleText": "账单明细"
  283. // }
  284. // },
  285. // {
  286. // "path": "pages/wallet/index",
  287. // "style": {
  288. // "navigationBarTitleText": "我的钱包"
  289. // }
  290. // },
  291. // {
  292. // "path": "pages/wallet/balance/log",
  293. // "style": {
  294. // "navigationBarTitleText": "账单详情"
  295. // }
  296. // },
  297. // {
  298. // "path": "pages/wallet/recharge/index",
  299. // "style": {
  300. // "navigationBarTitleText": "充值中心"
  301. // }
  302. // },
  303. // {
  304. // "path": "pages/wallet/recharge/order",
  305. // "style": {
  306. // "navigationBarTitleText": "充值记录"
  307. // }
  308. // },
  309. // {
  310. // "path": "pages/checkout/cashier/index",
  311. // "style": {
  312. // "navigationBarTitleText": "支付订单"
  313. // }
  314. // }
  315. // {
  316. // "path": "pages/order/express/index",
  317. // "style": {
  318. // "navigationBarTitleText": "物流跟踪"
  319. // }
  320. // },
  321. // {
  322. // "path": "pages/order/comment/index",
  323. // "style": {
  324. // "navigationBarTitleText": "订单评价"
  325. // }
  326. // },
  327. // {
  328. // "path": "pages/refund/index",
  329. // "style": {
  330. // "navigationBarTitleText": "退换/售后"
  331. // }
  332. // },
  333. // {
  334. // "path": "pages/refund/detail",
  335. // "style": {
  336. // "navigationBarTitleText": "售后详情"
  337. // }
  338. // },
  339. // {
  340. // "path": "pages/refund/apply",
  341. // "style": {
  342. // "navigationBarTitleText": "申请售后"
  343. // }
  344. // }
  345. ],
  346. "globalStyle": {
  347. // #ifdef H5
  348. // "navigationStyle": "custom",
  349. "maxWidth": 750,
  350. "rpxCalcMaxDeviceWidth": 750, // rpx 计算所支持的最大设备宽度,单位 px,默认值为 960
  351. "rpxCalcBaseDeviceWidth": 560, // rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px,默认值为 375
  352. "rpxCalcIncludeWidth": 9999, // rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx,默认值为 750
  353. // #endif
  354. "navigationBarBackgroundColor": "#ffffff",
  355. "navigationBarTitleText": "",
  356. "navigationBarTextStyle": "black",
  357. "backgroundTextStyle": "dark"
  358. },
  359. "easycom": {
  360. "autoscan": true,
  361. "custom": {}
  362. },
  363. "uni-app": {
  364. "scripts": {
  365. "dev": {
  366. "title": "build:dev",
  367. "env": {
  368. "UNI_PLATFORM": "h5",
  369. "H_NODE_ENV": "dev",
  370. "H_BASEURL": "https://hnapi.kdboss.cn",
  371. "H_REDIRECT": "xxx"
  372. }
  373. },
  374. "test": {
  375. "title": "build:test",
  376. "env": {
  377. "UNI_PLATFORM": "h5",
  378. "H_NODE_ENV": "test",
  379. "H_BASEURL": "https://hnapi.kdboss.cn",
  380. "H_REDIRECT": "xxx"
  381. }
  382. },
  383. "prod": {
  384. "title": "build:prod",
  385. "env": {
  386. "UNI_PLATFORM": "h5",
  387. "H_NODE_ENV": "prod",
  388. "H_BASEURL": "https://hnapi.kdboss.cn",
  389. "H_REDIRECT": "xxx"
  390. }
  391. }
  392. }
  393. }
  394. }