pages.json 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationBarTitleText": "登录"
  7. }
  8. },
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "首页"
  13. }
  14. },
  15. {
  16. "path": "pages/my/my",
  17. "style": {
  18. "navigationBarTitleText": "个人中心"
  19. }
  20. },
  21. {
  22. "path": "pages/order/index",
  23. "style": {
  24. "navigationBarTitleText": "订单统计"
  25. }
  26. },
  27. {
  28. "path": "pages/book/index",
  29. "style": {
  30. "navigationBarTitleText": "图书管理"
  31. }
  32. }
  33. ],
  34. "subPackages": [{
  35. "root": "pages/index",
  36. "pages": [{
  37. "path": "express/transfer-sign",
  38. "style": {
  39. "navigationBarTitleText": "中转签收"
  40. }
  41. },
  42. {
  43. "path": "express/scan",
  44. "style": {
  45. "navigationBarTitleText": "扫码"
  46. }
  47. },
  48. {
  49. "path": "express/quick-check",
  50. "style": {
  51. "navigationBarTitleText": "快递验收"
  52. }
  53. },
  54. {
  55. "path": "express/quick-unpack",
  56. "style": {
  57. "navigationBarTitleText": "快递拆包"
  58. }
  59. },
  60. {
  61. "path": "express/route-exception",
  62. "style": {
  63. "navigationBarTitleText": "路由签收异常"
  64. }
  65. },
  66. {
  67. "path": "express/warehouse-sign",
  68. "style": {
  69. "navigationBarTitleText": "到仓签收"
  70. }
  71. },
  72. {
  73. "path": "express/weight-modify",
  74. "style": {
  75. "navigationBarTitleText": "重量修改"
  76. }
  77. },
  78. {
  79. "path": "audit/confirm-receipt",
  80. "style": {
  81. "navigationBarTitleText": "确认收货"
  82. }
  83. },
  84. {
  85. "path": "audit/scan-order",
  86. "style": {
  87. "navigationStyle": "custom",
  88. "navigationBarTitleText": "扫书查单"
  89. }
  90. },
  91. {
  92. "path": "audit/isbn-order",
  93. "style": {
  94. "navigationBarTitleText": "根据ISBN查询订单"
  95. }
  96. },
  97. {
  98. "path": "audit/express-order",
  99. "style": {
  100. "navigationBarTitleText": "根据快递单号或订单号查询"
  101. }
  102. },
  103. {
  104. "path": "detail/user-orders",
  105. "style": {
  106. "navigationBarTitleText": "用户所有订单"
  107. }
  108. },
  109. {
  110. "path": "detail/index",
  111. "style": {
  112. "navigationBarTitleText": "订单审核"
  113. }
  114. },
  115. {
  116. "path": "detail/book-audit",
  117. "style": {
  118. "navigationBarTitleText": "订单图书审核"
  119. }
  120. },
  121. {
  122. "path": "detail/batch-audit",
  123. "style": {
  124. "navigationBarTitleText": "批量审核"
  125. }
  126. },
  127. {
  128. "path": "audit/sender",
  129. "style": {
  130. "navigationBarTitleText": "根据发件人信息查询订单"
  131. }
  132. },
  133. {
  134. "path": "statistic/audit",
  135. "style": {
  136. "navigationBarTitleText": "审核统计"
  137. }
  138. },
  139. {
  140. "path": "statistic/after-sale",
  141. "style": {
  142. "navigationBarTitleText": "售后统计"
  143. }
  144. },
  145. {
  146. "path": "statistic/package",
  147. "style": {
  148. "navigationBarTitleText": "打包统计"
  149. }
  150. },
  151. {
  152. "path": "wms/medium-in",
  153. "style": {
  154. "navigationBarTitleText": "中等入库"
  155. }
  156. },
  157. {
  158. "path": "wms/good-in",
  159. "style": {
  160. "navigationBarTitleText": "良品入库"
  161. }
  162. },
  163. {
  164. "path": "wms/secondary-in",
  165. "style": {
  166. "navigationBarTitleText": "次品入库"
  167. }
  168. },
  169. {
  170. "path": "wms/bad-in",
  171. "style": {
  172. "navigationStyle": "custom",
  173. "navigationBarTitleText": "不良入库"
  174. }
  175. },
  176. {
  177. "path": "wms/bad-out",
  178. "style": {
  179. "navigationBarTitleText": "不良出库"
  180. }
  181. },
  182. {
  183. "path": "wms/bad-out-order",
  184. "style": {
  185. "navigationBarTitleText": "不良出库"
  186. }
  187. },
  188. {
  189. "path": "wms/bad-off",
  190. "style": {
  191. "navigationBarTitleText": "不良下架"
  192. }
  193. },
  194. {
  195. "path": "wms/order-query",
  196. "style": {
  197. "navigationBarTitleText": "订单查询"
  198. }
  199. },
  200. {
  201. "path": "wms/order-query-list",
  202. "style": {
  203. "navigationBarTitleText": "订单查询结果"
  204. }
  205. },
  206. {
  207. "path": "wms/location-order",
  208. "style": {
  209. "navigationBarTitleText": "库位订单"
  210. }
  211. },
  212. {
  213. "path": "wms/location-order-list",
  214. "style": {
  215. "navigationBarTitleText": "库位订单查询结果"
  216. }
  217. },
  218. {
  219. "path": "wms/location-select",
  220. "style": {
  221. "navigationBarTitleText": "库位选择"
  222. }
  223. },
  224. {
  225. "path": "wms/warehouse-select",
  226. "style": {
  227. "navigationBarTitleText": "仓库选择"
  228. }
  229. },
  230. {
  231. "path": "wms/speedy-check",
  232. "style": {
  233. "navigationStyle": "custom",
  234. "navigationBarTitleText": "快速盘点"
  235. }
  236. },
  237. {
  238. "path": "offline/check-order",
  239. "style": {
  240. "navigationBarTitleText": "线下核单"
  241. }
  242. },
  243. {
  244. "path": "offline/check-record",
  245. "style": {
  246. "navigationBarTitleText": "核单记录"
  247. }
  248. },
  249. {
  250. "path": "entry/scan-book",
  251. "style": {
  252. "navigationBarTitleText": "扫码查书"
  253. }
  254. },
  255. {
  256. "path": "entry/book-weight",
  257. "style": {
  258. "navigationBarTitleText": "录入书籍重量"
  259. }
  260. },
  261. {
  262. "path": "entry/commodity-scan",
  263. "style": {
  264. "navigationBarTitleText": "商品档案推送"
  265. }
  266. },
  267. {
  268. "path": "express/logistics-detail",
  269. "style": {
  270. "navigationBarTitleText": "物流详情"
  271. }
  272. },
  273. {
  274. "path": "wms/task-detail",
  275. "style": {
  276. "navigationStyle": "custom",
  277. "navigationBarTitleText": "下架任务"
  278. }
  279. },
  280. {
  281. "path": "wms/speedy-check-add",
  282. "style": {
  283. "navigationStyle": "custom",
  284. "navigationBarTitleText": "选择商品"
  285. }
  286. }
  287. ]
  288. },
  289. {
  290. "root": "pages/my",
  291. "pages": [{
  292. "path": "page/user-info",
  293. "style": {
  294. "navigationBarTitleText": "用户信息"
  295. }
  296. },
  297. {
  298. "path": "page/warehouse",
  299. "style": {
  300. "navigationBarTitleText": "默认仓库"
  301. }
  302. },
  303. {
  304. "path": "page/school",
  305. "style": {
  306. "navigationBarTitleText": "学校设置"
  307. }
  308. },
  309. {
  310. "path": "page/audit-unfinished",
  311. "style": {
  312. "navigationBarTitleText": "审核未完成"
  313. }
  314. },
  315. {
  316. "path": "page/version",
  317. "style": {
  318. "navigationBarTitleText": "版本设置"
  319. }
  320. },
  321. {
  322. "path": "page/volume",
  323. "style": {
  324. "navigationBarTitleText": "音频设置"
  325. }
  326. },
  327. {
  328. "path": "page/book-display",
  329. "style": {
  330. "navigationBarTitleText": "图书显示设置"
  331. }
  332. },
  333. {
  334. "path": "page/password",
  335. "style": {
  336. "navigationBarTitleText": "修改密码"
  337. }
  338. }
  339. ]
  340. },
  341. {
  342. "root": "pages/order/stat",
  343. "pages": [{
  344. "path": "pending-review",
  345. "style": {
  346. "navigationBarTitleText": "待初审统计"
  347. }
  348. },
  349. {
  350. "path": "pending-pick",
  351. "style": {
  352. "navigationBarTitleText": "待拣件统计"
  353. }
  354. },
  355. {
  356. "path": "pending-sign",
  357. "style": {
  358. "navigationBarTitleText": "已拣件待签收"
  359. }
  360. },
  361. {
  362. "path": "pending-confirm",
  363. "style": {
  364. "navigationBarTitleText": "待确认收货"
  365. }
  366. },
  367. {
  368. "path": "pending-audit",
  369. "style": {
  370. "navigationBarTitleText": "已到货待审核"
  371. }
  372. },
  373. {
  374. "path": "pending-payment",
  375. "style": {
  376. "navigationBarTitleText": "待付款"
  377. }
  378. },
  379. {
  380. "path": "receive-stat",
  381. "style": {
  382. "navigationBarTitleText": "收货统计"
  383. }
  384. }
  385. ]
  386. }
  387. ],
  388. "globalStyle": {
  389. "navigationBarTextStyle": "white",
  390. "navigationBarTitleText": "",
  391. "navigationBarBackgroundColor": "#22ac38"
  392. },
  393. "tabBar": {
  394. "backgroundColor": "#ffffff",
  395. "color": "#767676",
  396. "selectedColor": "#1b77f0",
  397. "list": [{
  398. "pagePath": "pages/index/index",
  399. "iconPath": "/static/tabbar/home.png",
  400. "selectedIconPath": "/static/tabbar/homeHl.png",
  401. "text": "首页"
  402. },
  403. {
  404. "pagePath": "pages/order/index",
  405. "iconPath": "/static/tabbar/order.png",
  406. "selectedIconPath": "/static/tabbar/orderHl.png",
  407. "text": "订单"
  408. },
  409. {
  410. "pagePath": "pages/book/index",
  411. "iconPath": "/static/tabbar/book.png",
  412. "selectedIconPath": "/static/tabbar/bookHl.png",
  413. "text": "图书"
  414. },
  415. {
  416. "pagePath": "pages/my/my",
  417. "iconPath": "/static/tabbar/mine.png",
  418. "selectedIconPath": "/static/tabbar/mineHl.png",
  419. "text": "我的"
  420. }
  421. ]
  422. },
  423. "uniIdRouter": {}
  424. }