pages.json 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663
  1. {
  2. "pages": [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/login/login",
  6. "style": {
  7. "navigationBarTitleText": "登录",
  8. "navigationStyle": "custom",
  9. "navigationBarTextStyle": "white"
  10. }
  11. },
  12. {
  13. "path": "pages/index/index",
  14. "style": {
  15. "navigationBarTitleText": "工作中心",
  16. "navigationStyle": "custom",
  17. "navigationBarTextStyle": "black"
  18. }
  19. },
  20. {
  21. "path": "pages/home/home",
  22. "style": {
  23. "navigationBarTitleText": "工作台",
  24. "navigationStyle": "custom",
  25. "navigationBarTextStyle": "black"
  26. }
  27. },
  28. {
  29. "path": "pages/center/center",
  30. "style": {
  31. "navigationBarTitleText": "我的",
  32. "navigationStyle": "custom",
  33. "navigationBarTextStyle": "black"
  34. }
  35. },
  36. {
  37. "path": "pages/home/myTicket/myTicket",
  38. "style": {
  39. "navigationBarTitleText": "我的工单",
  40. "navigationStyle": "custom",
  41. "navigationBarTextStyle": "white"
  42. }
  43. },
  44. {
  45. "path": "pages/home/msg/msg",
  46. "style": {
  47. "navigationBarTitleText": "我的消息",
  48. "navigationStyle": "custom",
  49. "navigationBarTextStyle": "white"
  50. }
  51. },
  52. {
  53. "path": "pages/home/wt/todo/todo",
  54. "style": {
  55. "navigationBarTitleText": "我的待办",
  56. "navigationStyle": "custom",
  57. "navigationBarTextStyle": "white"
  58. }
  59. },
  60. {
  61. "path": "pages/home/wt/done/done",
  62. "style": {
  63. "navigationBarTitleText": "我的已办",
  64. "navigationStyle": "custom",
  65. "navigationBarTextStyle": "white"
  66. }
  67. },
  68. {
  69. "path": "pages/home/wt/components/detail",
  70. "style": {
  71. "navigationBarTitleText": "流程详情",
  72. "navigationStyle": "custom",
  73. "navigationBarTextStyle": "white"
  74. }
  75. },
  76. {
  77. "path": "pages/home/wt/components/processTask",
  78. "style": {
  79. "navigationBarTitleText": "处理流程任务",
  80. "navigationStyle": "custom",
  81. "navigationBarTextStyle": "white"
  82. }
  83. },
  84. // {
  85. // "path": "pages/home/wt/components/feeApplication/taskForm",
  86. // "style": {
  87. // "navigationBarTitleText": "111",
  88. // "navigationStyle": "custom",
  89. // "navigationBarTextStyle": "white"
  90. // }
  91. // },
  92. {
  93. "path": "pages/home/backlog/result",
  94. "style": {
  95. "navigationBarTitleText": "提示",
  96. "autoBackButton": false
  97. // "navigationBarTextStyle": "white"
  98. }
  99. },
  100. {
  101. "path": "pages/home/backlog/planApproval",
  102. "style": {
  103. "navigationBarTitleText": "我的待办计划审批",
  104. "navigationStyle": "custom",
  105. "navigationBarTextStyle": "white"
  106. }
  107. },
  108. {
  109. "path": "pages/home/backlog/planNatureApproval",
  110. "style": {
  111. "navigationBarTitleText": "我的待办计划审批",
  112. "navigationStyle": "custom",
  113. "navigationBarTextStyle": "white"
  114. }
  115. },
  116. {
  117. "path": "pages/home/backlog/approve_enter",
  118. "style": {
  119. "navigationBarTitleText": "入库单审批",
  120. "navigationStyle": "custom",
  121. "navigationBarTextStyle": "white"
  122. }
  123. },
  124. {
  125. "path": "pages/home/backlog/approve_out",
  126. "style": {
  127. "navigationBarTitleText": "出库单审批",
  128. "navigationStyle": "custom",
  129. "navigationBarTextStyle": "white"
  130. }
  131. },
  132. {
  133. "path": "pages/home/backlog/approve_allot",
  134. "style": {
  135. "navigationBarTitleText": "库存调拨审批",
  136. "navigationStyle": "custom",
  137. "navigationBarTextStyle": "white"
  138. }
  139. },
  140. {
  141. "path": "pages/home/backlog/approve_approve_allot",
  142. "style": {
  143. "navigationBarTitleText": "报损报溢审批",
  144. "navigationStyle": "custom",
  145. "navigationBarTextStyle": "white"
  146. }
  147. },
  148. {
  149. "path": "pages/home/backlog/sparepartDetail",
  150. "style": {
  151. "navigationBarTitleText": "申领备品备件详情",
  152. "navigationStyle": "custom",
  153. "navigationBarTextStyle": "white"
  154. }
  155. },
  156. {
  157. "path": "pages/tour_tally/order/order",
  158. "style": {
  159. "navigationBarTitleText": "巡点检",
  160. "navigationStyle": "custom",
  161. "navigationBarTextStyle": "white"
  162. }
  163. },
  164. {
  165. "path": "pages/tour_tally/check/index",
  166. "style": {
  167. "navigationBarTitleText": "巡点检检查",
  168. "navigationStyle": "custom",
  169. "navigationBarTextStyle": "white"
  170. }
  171. },
  172. {
  173. "path": "pages/tour_tally/check/detail",
  174. "style": {
  175. "navigationBarTitleText": "巡点检检查详情",
  176. "navigationStyle": "custom",
  177. "navigationBarTextStyle": "white"
  178. }
  179. },
  180. {
  181. "path": "pages/tour_tally/accept/index",
  182. "style": {
  183. "navigationBarTitleText": "受理巡点检工单",
  184. "navigationStyle": "custom",
  185. "navigationBarTextStyle": "white"
  186. }
  187. },
  188. {
  189. "path": "pages/tour_tally/inventory/inventory",
  190. "style": {
  191. "navigationBarTitleText": "巡点检列表",
  192. "navigationStyle": "custom",
  193. "navigationBarTextStyle": "white"
  194. }
  195. },
  196. {
  197. "path": "pages/tour_tally/detail/detail",
  198. "style": {
  199. "navigationBarTitleText": "详情",
  200. "navigationStyle": "custom",
  201. "navigationBarTextStyle": "white"
  202. }
  203. },
  204. {
  205. "path": "pages/tour_tally/turn_send/turn_send",
  206. "style": {
  207. "navigationBarTitleText": "转派",
  208. "navigationStyle": "custom",
  209. "navigationBarTextStyle": "white"
  210. }
  211. },
  212. {
  213. "path": "pages/tour_tally/submitted_ministry/submitted_ministry",
  214. "style": {
  215. "navigationBarTitleText": "报工",
  216. "navigationStyle": "custom",
  217. "navigationBarTextStyle": "white"
  218. }
  219. },
  220. {
  221. "path": "pages/tour_tally/turn_send_user/turn_send_user",
  222. "style": {
  223. "navigationBarTitleText": "转派人员",
  224. "navigationStyle": "custom",
  225. "navigationBarTextStyle": "white"
  226. }
  227. },
  228. {
  229. "path": "pages/tour_tally/defects/defects",
  230. "style": {
  231. "navigationBarTitleText": "缺陷",
  232. "navigationStyle": "custom",
  233. "navigationBarTextStyle": "white"
  234. }
  235. },
  236. {
  237. "path": "pages/quantity/detail/detail",
  238. "style": {
  239. "navigationBarTitleText": "量具送检详情",
  240. "navigationStyle": "custom",
  241. "navigationBarTextStyle": "white"
  242. }
  243. },
  244. {
  245. "path": "pages/quantity/check/index",
  246. "style": {
  247. "navigationBarTitleText": "量具送检检查",
  248. "navigationStyle": "custom",
  249. "navigationBarTextStyle": "white"
  250. }
  251. },
  252. {
  253. "path": "pages/quantity/check/detail",
  254. "style": {
  255. "navigationBarTitleText": "量具送检检查详情",
  256. "navigationStyle": "custom",
  257. "navigationBarTextStyle": "white"
  258. }
  259. },
  260. {
  261. "path": "pages/maintenance/order/order",
  262. "style": {
  263. "navigationBarTitleText": "保养工单",
  264. "navigationStyle": "custom",
  265. "navigationBarTextStyle": "white"
  266. }
  267. },
  268. {
  269. "path": "pages/maintenance/check/index",
  270. "style": {
  271. "navigationBarTitleText": "保养中",
  272. "navigationStyle": "custom",
  273. "navigationBarTextStyle": "white"
  274. }
  275. },
  276. {
  277. "path": "pages/maintenance/check/detail",
  278. "style": {
  279. "navigationBarTitleText": "保养详情",
  280. "navigationStyle": "custom",
  281. "navigationBarTextStyle": "white"
  282. }
  283. },
  284. {
  285. "path": "pages/maintenance/check/register",
  286. "style": {
  287. "navigationBarTitleText": "备品备件登记",
  288. "navigationStyle": "custom",
  289. "navigationBarTextStyle": "white"
  290. }
  291. },
  292. {
  293. "path": "pages/maintenance/accept/index",
  294. "style": {
  295. "navigationBarTitleText": "受理保养工单",
  296. "navigationStyle": "custom",
  297. "navigationBarTextStyle": "white"
  298. }
  299. },
  300. {
  301. "path": "pages/maintenance/detail/detail",
  302. "style": {
  303. "navigationBarTitleText": "详情",
  304. "navigationStyle": "custom",
  305. "navigationBarTextStyle": "white"
  306. }
  307. },
  308. {
  309. "path": "pages/maintenance/turn_send/turn_send",
  310. "style": {
  311. "navigationBarTitleText": "转派",
  312. "navigationStyle": "custom",
  313. "navigationBarTextStyle": "white"
  314. }
  315. },
  316. {
  317. "path": "pages/maintenance/submitted_ministry/submitted_ministry",
  318. "style": {
  319. "navigationBarTitleText": "报工",
  320. "navigationStyle": "custom",
  321. "navigationBarTextStyle": "white"
  322. }
  323. },
  324. {
  325. "path": "pages/maintenance/turn_send_user/turn_send_user",
  326. "style": {
  327. "navigationBarTitleText": "转派人员",
  328. "navigationStyle": "custom",
  329. "navigationBarTextStyle": "white"
  330. }
  331. },
  332. {
  333. "path": "pages/maintenance/defects/defects",
  334. "style": {
  335. "navigationBarTitleText": "缺陷",
  336. "navigationStyle": "custom",
  337. "navigationBarTextStyle": "white"
  338. }
  339. },
  340. // {
  341. // "path": "pages/maintain_service/order/order",
  342. // "style": {
  343. // "navigationBarTitleText": "维修工单",
  344. // "navigationStyle": "custom",
  345. // "navigationBarTextStyle": "white"
  346. // }
  347. // },
  348. // {
  349. // "path": "pages/maintain_service/detail/detail",
  350. // "style": {
  351. // "navigationBarTitleText": "详情",
  352. // "navigationStyle": "custom",
  353. // "navigationBarTextStyle": "white"
  354. // }
  355. // },
  356. // {
  357. // "path": "pages/maintain_service/submitted_ministry/submitted_ministry",
  358. // "style": {
  359. // "navigationBarTitleText": "报工",
  360. // "navigationStyle": "custom",
  361. // "navigationBarTextStyle": "white"
  362. // }
  363. // },
  364. // {
  365. // "path": "pages/maintain_service/sparepart/sparepart",
  366. // "style": {
  367. // "navigationBarTitleText": "选择备品备件",
  368. // "navigationStyle": "custom",
  369. // "navigationBarTextStyle": "white"
  370. // }
  371. // },
  372. // {
  373. // "path": "pages/maintain_service/sparepart/sparepartDetail",
  374. // "style": {
  375. // "navigationBarTitleText": "备品备件详情",
  376. // "navigationStyle": "custom",
  377. // "navigationBarTextStyle": "white"
  378. // }
  379. // },
  380. {
  381. "path": "pages/maintenanceWorkorder/order/order",
  382. "style": {
  383. "navigationBarTitleText": "维修工单",
  384. "navigationStyle": "custom",
  385. "navigationBarTextStyle": "white"
  386. }
  387. },
  388. {
  389. "path": "pages/maintenanceWorkorder/detail/detail",
  390. "style": {
  391. "navigationBarTitleText": "详情",
  392. "navigationStyle": "custom",
  393. "navigationBarTextStyle": "white"
  394. }
  395. },
  396. {
  397. "path": "pages/maintenanceWorkorder/submitted_ministry/submitted_ministry",
  398. "style": {
  399. "navigationBarTitleText": "报工",
  400. "navigationStyle": "custom",
  401. "navigationBarTextStyle": "white"
  402. }
  403. },
  404. {
  405. "path": "pages/maintenanceWorkorder/sparepart/sparepartList",
  406. "style": {
  407. "navigationBarTitleText": "选择备品备件",
  408. "navigationStyle": "custom",
  409. "navigationBarTextStyle": "white"
  410. }
  411. },
  412. {
  413. "path": "pages/maintenanceWorkorder/sparepart/sparepartDetail",
  414. "style": {
  415. "navigationBarTitleText": "备品备件详情",
  416. "navigationStyle": "custom",
  417. "navigationBarTextStyle": "white"
  418. }
  419. },
  420. {
  421. "path": "pages/storage_inventory/add/add",
  422. "style": {
  423. "navigationBarTitleText": "",
  424. "enablePullDownRefresh": false
  425. }
  426. },
  427. {
  428. "path": "pages/storage_inventory/Inventory_list/Inventory_list",
  429. "style": {
  430. "navigationBarTitleText": "",
  431. "enablePullDownRefresh": false
  432. }
  433. },
  434. {
  435. "path": "pages/sparepart/order/order",
  436. "style": {
  437. "navigationBarTitleText": "备品备件",
  438. "navigationStyle": "custom",
  439. "navigationBarTextStyle": "white"
  440. }
  441. },
  442. {
  443. "path": "pages/sparepart/detail/detail",
  444. "style": {
  445. "navigationBarTitleText": "详情",
  446. "navigationStyle": "custom",
  447. "navigationBarTextStyle": "white"
  448. }
  449. },
  450. {
  451. "path": "pages/put_storage/order/index",
  452. "style": {
  453. "navigationBarTitleText": "入库台账",
  454. "navigationStyle": "custom",
  455. "navigationBarTextStyle": "white"
  456. }
  457. },
  458. {
  459. "path": "pages/put_storage/details/details",
  460. "style": {
  461. "navigationBarTitleText": "入库台账",
  462. "navigationStyle": "custom",
  463. "navigationBarTextStyle": "white"
  464. }
  465. },
  466. {
  467. "path": "pages/put_storage/add/index",
  468. "style": {
  469. "navigationBarTitleText": "新增入库单",
  470. "navigationStyle": "custom",
  471. "navigationBarTextStyle": "white"
  472. }
  473. },
  474. {
  475. "path": "pages/put_storage/linkage/index",
  476. "style": {
  477. "navigationBarTitleText": "选择备品备件",
  478. "navigationStyle": "custom",
  479. "navigationBarTextStyle": "white"
  480. }
  481. },
  482. {
  483. "path": "pages/outbound/order/index",
  484. "style": {
  485. "navigationBarTitleText": "入库台账",
  486. "navigationStyle": "custom",
  487. "navigationBarTextStyle": "white"
  488. }
  489. },
  490. {
  491. "path": "pages/outbound/details/details",
  492. "style": {
  493. "navigationBarTitleText": "入库台账",
  494. "navigationStyle": "custom",
  495. "navigationBarTextStyle": "white"
  496. }
  497. },
  498. {
  499. "path": "pages/outbound/add/index",
  500. "style": {
  501. "navigationBarTitleText": "新增入库单",
  502. "navigationStyle": "custom",
  503. "navigationBarTextStyle": "white"
  504. }
  505. },
  506. {
  507. "path": "pages/outbound/linkage/index",
  508. "style": {
  509. "navigationBarTitleText": "选择备品备件",
  510. "navigationStyle": "custom",
  511. "navigationBarTextStyle": "white"
  512. }
  513. },
  514. {
  515. "path": "pages/repair/order/order",
  516. "style": {
  517. "navigationBarTitleText": "报修管理",
  518. "navigationStyle": "custom",
  519. "navigationBarTextStyle": "white"
  520. }
  521. },
  522. {
  523. "path": "pages/repair/repair/index",
  524. "style": {
  525. "navigationBarTitleText": "报修",
  526. "navigationStyle": "custom",
  527. "navigationBarTextStyle": "white"
  528. }
  529. },
  530. {
  531. "path": "pages/repair/repair/selectEquipment",
  532. "style": {
  533. "navigationBarTitleText": "选择设备",
  534. "navigationStyle": "custom",
  535. "navigationBarTextStyle": "white"
  536. }
  537. },
  538. {
  539. "path": "pages/repair/select_repair/index",
  540. "style": {
  541. "navigationBarTitleText": "选择设备",
  542. "navigationStyle": "custom",
  543. "navigationBarTextStyle": "white"
  544. }
  545. },
  546. {
  547. "path": "pages/repair/sparepart/index",
  548. "style": {
  549. "navigationBarTitleText": "备品备件",
  550. "navigationStyle": "custom",
  551. "navigationBarTextStyle": "white"
  552. }
  553. },
  554. {
  555. "path": "pages/promp/promp",
  556. "style": {
  557. "navigationBarTitleText": "提示",
  558. "navigationStyle": "custom",
  559. "navigationBarTextStyle": "white"
  560. }
  561. },
  562. {
  563. "path": "pages/sparepart/return/return",
  564. "style": {
  565. "navigationBarTitleText": "",
  566. "enablePullDownRefresh": false
  567. }
  568. },
  569. {
  570. "path": "pages/tour_tally/sparepart/sparepart",
  571. "style": {
  572. "navigationBarTitleText": "选择备品备件",
  573. "navigationStyle": "custom",
  574. "navigationBarTextStyle": "white"
  575. }
  576. },
  577. {
  578. "path": "pages/maintenance/sparepart/sparepart",
  579. "style": {
  580. "navigationBarTitleText": "选择备品备件",
  581. "navigationStyle": "custom",
  582. "navigationBarTextStyle": "white"
  583. }
  584. },
  585. {
  586. "path": "pages/maintenance/sparepart/sparepartDetail",
  587. "style": {
  588. "navigationBarTitleText": "备品备件详情",
  589. "navigationStyle": "custom",
  590. "navigationBarTextStyle": "white"
  591. }
  592. },
  593. {
  594. "path": "pages/sparepart/sparepart/sparepart",
  595. "style": {
  596. "navigationBarTitleText": "选择备品备件",
  597. "navigationStyle": "custom",
  598. "navigationBarTextStyle": "white"
  599. }
  600. },
  601. {
  602. "path": "pages/repair/detail/detail",
  603. "style": {
  604. "navigationBarTitleText": "详情",
  605. "navigationStyle": "custom",
  606. "navigationBarTextStyle": "white"
  607. }
  608. },
  609. {
  610. "path": "pages/center/about/about",
  611. "style": {
  612. "navigationBarTitleText": "关于我们",
  613. "navigationStyle": "custom",
  614. "navigationBarTextStyle": "white"
  615. }
  616. },
  617. {
  618. "path": "pages/center/mission/mission",
  619. "style": {
  620. "navigationBarTitleText": "我的任务",
  621. "navigationStyle": "custom",
  622. "navigationBarTextStyle": "white"
  623. }
  624. },
  625. {
  626. "path": "pages/standing_book/detail/detail",
  627. "style": {
  628. "navigationBarTitleText": "台账",
  629. "navigationStyle": "custom",
  630. "navigationBarTextStyle": "white"
  631. }
  632. },
  633. {
  634. "path": "pages/work/order/order",
  635. "style": {
  636. "navigationBarTitleText": "工单管理",
  637. "navigationStyle": "custom",
  638. "navigationBarTextStyle": "white"
  639. }
  640. },
  641. {
  642. "path": "pages/molds/detail/detail",
  643. "style": {
  644. "navigationBarTitleText": "模具台账",
  645. "navigationStyle": "custom",
  646. "navigationBarTextStyle": "black"
  647. }
  648. },
  649. //---------------------仓储管理--------------------
  650. //入库台账
  651. {
  652. "path": "pages/warehouse/enterHouse/index",
  653. "style": {
  654. "navigationBarTitleText": "入库台账",
  655. "navigationStyle": "custom",
  656. "navigationBarTextStyle": "white"
  657. }
  658. },
  659. {
  660. "path": "pages/warehouse/enterHouse/details",
  661. "style": {
  662. "navigationBarTitleText": "入库详情",
  663. "navigationStyle": "custom",
  664. "navigationBarTextStyle": "white"
  665. }
  666. },
  667. {
  668. "path": "pages/warehouse/enterHouse/addStock",
  669. "style": {
  670. "navigationBarTitleText": "新增入库单",
  671. "navigationStyle": "custom",
  672. "navigationBarTextStyle": "white"
  673. }
  674. },
  675. {
  676. "path": "pages/warehouse/enterHouse/batchNumEdit",
  677. "style": {
  678. "navigationBarTitleText": "批次号信息",
  679. "navigationStyle": "custom",
  680. "navigationBarTextStyle": "white"
  681. }
  682. },
  683. {
  684. "path": "pages/warehouse/enterHouse/selectEnterType",
  685. "style": {
  686. "navigationBarTitleText": "选择入库类别",
  687. "navigationStyle": "custom",
  688. "navigationBarTextStyle": "white"
  689. }
  690. },
  691. {
  692. "path": "pages/warehouse/enterHouse/batchDetails",
  693. "style": {
  694. "navigationBarTitleText": "入库批次号详情",
  695. "navigationStyle": "custom",
  696. "navigationBarTextStyle": "white"
  697. }
  698. },
  699. {
  700. "path": "pages/warehouse/enterHouse/components/remarks",
  701. "style": {
  702. "navigationBarTitleText": "备注",
  703. "navigationStyle": "custom",
  704. "navigationBarTextStyle": "white"
  705. }
  706. },
  707. {
  708. "path": "pages/warehouse/enterHouse/detailsType",
  709. "style": {
  710. "navigationStyle": "custom",
  711. "navigationBarTextStyle": "white"
  712. }
  713. },
  714. //出库台账
  715. {
  716. "path": "pages/warehouse/outHouse/index",
  717. "style": {
  718. "navigationBarTitleText": "出库台账",
  719. "navigationStyle": "custom",
  720. "navigationBarTextStyle": "white"
  721. }
  722. },
  723. {
  724. "path": "pages/warehouse/outHouse/details",
  725. "style": {
  726. "navigationBarTitleText": "出库台账详情",
  727. "navigationStyle": "custom",
  728. "navigationBarTextStyle": "white"
  729. }
  730. },
  731. {
  732. "path": "pages/warehouse/outHouse/addStock",
  733. "style": {
  734. "navigationBarTitleText": "新增出库单",
  735. "navigationStyle": "custom",
  736. "navigationBarTextStyle": "white"
  737. }
  738. },
  739. {
  740. "path": "pages/warehouse/outHouse/selectOutType",
  741. "style": {
  742. "navigationBarTitleText": "选择出库类别",
  743. "navigationStyle": "custom",
  744. "navigationBarTextStyle": "white"
  745. }
  746. },
  747. {
  748. "path": "pages/warehouse/outHouse/selectCurSarepart",
  749. "style": {
  750. "navigationBarTitleText": "选择备品备件",
  751. "navigationStyle": "custom",
  752. "navigationBarTextStyle": "white"
  753. }
  754. },
  755. {
  756. "path": "pages/warehouse/outHouse/bucketSelect",
  757. "style": {
  758. "navigationBarTitleText": "选择桶号",
  759. "navigationStyle": "custom",
  760. "navigationBarTextStyle": "white"
  761. }
  762. },
  763. {
  764. "path": "pages/warehouse/outHouse/batchDetails",
  765. "style": {
  766. "navigationBarTitleText": "出库批次号详情",
  767. "navigationStyle": "custom",
  768. "navigationBarTextStyle": "white"
  769. }
  770. },
  771. // //物料入库
  772. // {
  773. // "path": "pages/warehouse/material/index",
  774. // "style": {
  775. // "navigationBarTitleText": "物料入库单",
  776. // "navigationStyle": "custom",
  777. // "navigationBarTextStyle": "white"
  778. // }
  779. // }, {
  780. // "path": "pages/warehouse/material/addStock",
  781. // "style": {
  782. // "navigationBarTitleText": "新增物料入库单",
  783. // "navigationStyle": "custom",
  784. // "navigationBarTextStyle": "white"
  785. // }
  786. // }, {
  787. // "path": "pages/warehouse/material/addMaterial",
  788. // "style": {
  789. // "navigationBarTitleText": "添加物料",
  790. // "navigationStyle": "custom",
  791. // "navigationBarTextStyle": "white"
  792. // }
  793. // }, {
  794. // "path": "pages/warehouse/material/regStock",
  795. // "style": {
  796. // "navigationBarTitleText": "直接登记",
  797. // "navigationStyle": "custom",
  798. // "navigationBarTextStyle": "white"
  799. // }
  800. // }, {
  801. // "path": "pages/warehouse/material/regMaterial",
  802. // "style": {
  803. // "navigationBarTitleText": "添加物料",
  804. // "navigationStyle": "custom",
  805. // "navigationBarTextStyle": "white"
  806. // }
  807. // }, {
  808. // "path": "pages/warehouse/material/details",
  809. // "style": {
  810. // "navigationBarTitleText": "详情",
  811. // "navigationStyle": "custom",
  812. // "navigationBarTextStyle": "white"
  813. // }
  814. // }, {
  815. // "path": "pages/warehouse/material/warehousReg",
  816. // "style": {
  817. // "navigationBarTitleText": "登记入库",
  818. // "navigationStyle": "custom",
  819. // "navigationBarTextStyle": "white"
  820. // }
  821. // }, {
  822. // "path": "pages/warehouse/material/warehousDetails",
  823. // "style": {
  824. // "navigationBarTitleText": "入库明细",
  825. // "navigationStyle": "custom",
  826. // "navigationBarTextStyle": "white"
  827. // }
  828. // }, {
  829. // "path": "pages/warehouse/material/warehousDetails",
  830. // "style": {
  831. // "navigationBarTitleText": "入库明细",
  832. // "navigationStyle": "custom",
  833. // "navigationBarTextStyle": "white"
  834. // }
  835. // },
  836. // //设备入库
  837. // {
  838. // "path": "pages/warehouse/equipment/index",
  839. // "style": {
  840. // "navigationBarTitleText": "设备入库单",
  841. // "navigationStyle": "custom",
  842. // "navigationBarTextStyle": "white"
  843. // }
  844. // }, {
  845. // "path": "pages/warehouse/equipment/addStock",
  846. // "style": {
  847. // "navigationBarTitleText": "新增设备入库单",
  848. // "navigationStyle": "custom",
  849. // "navigationBarTextStyle": "white"
  850. // }
  851. // }, {
  852. // "path": "pages/warehouse/equipment/addMaterial",
  853. // "style": {
  854. // "navigationBarTitleText": "新增设备入库明细",
  855. // "navigationStyle": "custom",
  856. // "navigationBarTextStyle": "white"
  857. // }
  858. // }, {
  859. // "path": "pages/warehouse/equipment/regStock",
  860. // "style": {
  861. // "navigationBarTitleText": "直接登记",
  862. // "navigationStyle": "custom",
  863. // "navigationBarTextStyle": "white"
  864. // }
  865. // }, {
  866. // "path": "pages/warehouse/equipment/regMaterial",
  867. // "style": {
  868. // "navigationBarTitleText": "添加物料",
  869. // "navigationStyle": "custom",
  870. // "navigationBarTextStyle": "white"
  871. // }
  872. // }, {
  873. // "path": "pages/warehouse/equipment/warehousReg",
  874. // "style": {
  875. // "navigationBarTitleText": "直接登记",
  876. // "navigationStyle": "custom",
  877. // "navigationBarTextStyle": "white"
  878. // }
  879. // }, {
  880. // "path": "pages/warehouse/equipment/warehousDetails",
  881. // "style": {
  882. // "navigationBarTitleText": "添加物料",
  883. // "navigationStyle": "custom",
  884. // "navigationBarTextStyle": "white"
  885. // }
  886. // }, {
  887. // "path": "pages/warehouse/equipment/details",
  888. // "style": {
  889. // "navigationBarTitleText": "添加物料",
  890. // "navigationStyle": "custom",
  891. // "navigationBarTextStyle": "white"
  892. // }
  893. // },
  894. // //设备出库
  895. // {
  896. // "path": "pages/warehouse/outbound/index",
  897. // "style": {
  898. // "navigationBarTitleText": "设备入库单",
  899. // "navigationStyle": "custom",
  900. // "navigationBarTextStyle": "white"
  901. // }
  902. // }, {
  903. // "path": "pages/warehouse/outbound/addStock",
  904. // "style": {
  905. // "navigationBarTitleText": "新增设备入库单",
  906. // "navigationStyle": "custom",
  907. // "navigationBarTextStyle": "white"
  908. // }
  909. // }, {
  910. // "path": "pages/warehouse/outbound/addMaterial",
  911. // "style": {
  912. // "navigationBarTitleText": "新增设备入库明细",
  913. // "navigationStyle": "custom",
  914. // "navigationBarTextStyle": "white"
  915. // }
  916. // }, {
  917. // "path": "pages/warehouse/outbound/regStock",
  918. // "style": {
  919. // "navigationBarTitleText": "直接登记",
  920. // "navigationStyle": "custom",
  921. // "navigationBarTextStyle": "white"
  922. // }
  923. // }, {
  924. // "path": "pages/warehouse/outbound/regMaterial",
  925. // "style": {
  926. // "navigationBarTitleText": "添加物料",
  927. // "navigationStyle": "custom",
  928. // "navigationBarTextStyle": "white"
  929. // }
  930. // }, {
  931. // "path": "pages/warehouse/outbound/warehousReg",
  932. // "style": {
  933. // "navigationBarTitleText": "直接登记",
  934. // "navigationStyle": "custom",
  935. // "navigationBarTextStyle": "white"
  936. // }
  937. // }, {
  938. // "path": "pages/warehouse/outbound/warehousDetails",
  939. // "style": {
  940. // "navigationBarTitleText": "添加物料",
  941. // "navigationStyle": "custom",
  942. // "navigationBarTextStyle": "white"
  943. // }
  944. // }, {
  945. // "path": "pages/warehouse/outbound/details",
  946. // "style": {
  947. // "navigationBarTitleText": "添加物料",
  948. // "navigationStyle": "custom",
  949. // "navigationBarTextStyle": "white"
  950. // }
  951. // },
  952. //盘点工单
  953. {
  954. "path": "pages/warehouse/workOrder/index",
  955. "style": {
  956. "navigationBarTitleText": "盘点工单",
  957. "navigationStyle": "custom",
  958. "navigationBarTextStyle": "white"
  959. }
  960. },
  961. {
  962. "path": "pages/warehouse/workOrder/inventory/inventory",
  963. "style": {
  964. "navigationBarTitleText": "盘点清单",
  965. "navigationStyle": "custom",
  966. "navigationBarTextStyle": "white",
  967. "enablePullDownRefresh": true
  968. }
  969. },
  970. {
  971. "path": "pages/warehouse/workOrder/details/details",
  972. "style": {
  973. "navigationBarTitleText": "盘点详情",
  974. "navigationStyle": "custom",
  975. "navigationBarTextStyle": "white"
  976. }
  977. },
  978. {
  979. "path": "pages/warehouse/workOrder/manualCheck/manualCheck",
  980. "style": {
  981. "navigationBarTitleText": "手动盘点",
  982. "navigationStyle": "custom",
  983. "navigationBarTextStyle": "white"
  984. }
  985. },
  986. {
  987. "path": "pages/warehouse/workOrder/scanCheck/scanCheck",
  988. "style": {
  989. "navigationBarTitleText": "扫码盘点",
  990. "navigationStyle": "custom",
  991. "navigationBarTextStyle": "white"
  992. }
  993. },
  994. {
  995. "path": "pages/warehouse/workOrder/registerOverflow/registerOverflow",
  996. "style": {
  997. "navigationBarTitleText": "登记溢出物品",
  998. "navigationStyle": "custom",
  999. "navigationBarTextStyle": "white"
  1000. }
  1001. },
  1002. //库存调拨
  1003. {
  1004. "path": "pages/warehouse/inventoryAllocation/index",
  1005. "style": {
  1006. "navigationBarTitleText": "库存调拨",
  1007. "navigationStyle": "custom",
  1008. "navigationBarTextStyle": "white"
  1009. }
  1010. },
  1011. {
  1012. "path": "pages/warehouse/inventoryAllocation/edit",
  1013. "style": {
  1014. "navigationBarTitleText": "新建库存调拨",
  1015. "navigationStyle": "custom",
  1016. "navigationBarTextStyle": "white"
  1017. }
  1018. },
  1019. {
  1020. "path": "pages/warehouse/inventoryAllocation/detail",
  1021. "style": {
  1022. "navigationBarTitleText": "库存调拨详情",
  1023. "navigationStyle": "custom",
  1024. "navigationBarTextStyle": "white"
  1025. }
  1026. },
  1027. {
  1028. "path": "pages/warehouse/inventoryAllocation/preview",
  1029. "style": {
  1030. "navigationBarTitleText": "库存调拨预览",
  1031. "navigationStyle": "custom",
  1032. "navigationBarTextStyle": "white"
  1033. }
  1034. },
  1035. {
  1036. "path": "pages/warehouse/inventoryAllocation/scanView",
  1037. "style": {
  1038. "navigationBarTitleText": "扫码结果",
  1039. "navigationStyle": "custom",
  1040. "navigationBarTextStyle": "white"
  1041. }
  1042. },
  1043. //报损报溢
  1044. {
  1045. "path": "pages/warehouse/reportLoss/index",
  1046. "style": {
  1047. "navigationBarTitleText": "报损报溢",
  1048. "navigationStyle": "custom",
  1049. "navigationBarTextStyle": "white"
  1050. }
  1051. },
  1052. {
  1053. "path": "pages/warehouse/reportLoss/edit",
  1054. "style": {
  1055. "navigationBarTitleText": "新增报损报溢",
  1056. "navigationStyle": "custom",
  1057. "navigationBarTextStyle": "white"
  1058. }
  1059. },
  1060. {
  1061. "path": "pages/warehouse/reportLoss/detail",
  1062. "style": {
  1063. "navigationBarTitleText": "报损报溢详情",
  1064. "navigationStyle": "custom",
  1065. "navigationBarTextStyle": "white"
  1066. }
  1067. },
  1068. {
  1069. "path": "pages/warehouse/reportLoss/workorderSelected",
  1070. "style": {
  1071. "navigationBarTitleText": "选择工单",
  1072. "navigationStyle": "custom",
  1073. "navigationBarTextStyle": "white"
  1074. }
  1075. },
  1076. //库存管理
  1077. {
  1078. "path": "pages/warehouse/inventory/index",
  1079. "style": {
  1080. "navigationBarTitleText": "库存查询",
  1081. "navigationStyle": "custom",
  1082. "navigationBarTextStyle": "white"
  1083. }
  1084. },
  1085. {
  1086. "path": "pages/warehouse/inventory/details/details",
  1087. "style": {
  1088. "navigationBarTitleText": "库存详情",
  1089. "navigationStyle": "custom",
  1090. "navigationBarTextStyle": "white"
  1091. }
  1092. },
  1093. {
  1094. "path": "pages/warehouse/inventory/batch/batch",
  1095. "style": {
  1096. "navigationBarTitleText": "批次明细",
  1097. "navigationStyle": "custom",
  1098. "navigationBarTextStyle": "white"
  1099. }
  1100. },
  1101. {
  1102. "path": "pages/warehouse/inventory/order/order",
  1103. "style": {
  1104. "navigationBarTitleText": "单号列表",
  1105. "navigationStyle": "custom",
  1106. "navigationBarTextStyle": "white"
  1107. }
  1108. },
  1109. //---------------------公共页面--------------------
  1110. {
  1111. "path": "pages/common/DocumentSource",
  1112. "style": {
  1113. "navigationBarTitleText": "单据来源",
  1114. "navigationStyle": "custom",
  1115. "navigationBarTextStyle": "white"
  1116. }
  1117. },
  1118. {
  1119. "path": "pages/common/DocumentFile",
  1120. "style": {
  1121. "navigationBarTitleText": "单据附件",
  1122. "navigationStyle": "custom",
  1123. "navigationBarTextStyle": "white"
  1124. }
  1125. },
  1126. {
  1127. "path": "pages/ScanCode/ScanCode",
  1128. "style": {
  1129. "navigationBarTitleText": "报修管理",
  1130. "navigationStyle": "custom",
  1131. "navigationBarTextStyle": "white"
  1132. }
  1133. },
  1134. /* 系统设置 */
  1135. {
  1136. "path": "pages/systemSettings/index",
  1137. "style": {
  1138. "navigationBarTitleText": "系统设置",
  1139. "navigationStyle": "custom",
  1140. "navigationBarTextStyle": "white"
  1141. }
  1142. },
  1143. // 设备台账
  1144. {
  1145. "path": "pages/equipment_ledger/index",
  1146. "style": {
  1147. "navigationStyle": "custom",
  1148. "navigationBarTextStyle": "white"
  1149. }
  1150. },
  1151. {
  1152. "path": "pages/equipment_ledger/basic_info/basic_info",
  1153. "style": {
  1154. "navigationBarTitleText": "基本信息",
  1155. "navigationStyle": "custom",
  1156. "navigationBarTextStyle": "white"
  1157. }
  1158. },
  1159. {
  1160. "path": "pages/equipment_ledger/correlation_model/correlation_model",
  1161. "style": {
  1162. "navigationBarTitleText": "关联模具",
  1163. "navigationStyle": "custom",
  1164. "navigationBarTextStyle": "white"
  1165. }
  1166. },
  1167. {
  1168. "path": "pages/equipment_ledger/patrol_record/patrol_record",
  1169. "style": {
  1170. "navigationBarTitleText": "巡点检记录",
  1171. "navigationStyle": "custom",
  1172. "navigationBarTextStyle": "white"
  1173. }
  1174. },
  1175. {
  1176. "path": "pages/equipment_ledger/malfunction/malfunction",
  1177. "style": {
  1178. "navigationBarTitleText": "故障记录",
  1179. "navigationStyle": "custom",
  1180. "navigationBarTextStyle": "white"
  1181. }
  1182. },
  1183. {
  1184. "path": "pages/equipment_ledger/check/check",
  1185. "style": {
  1186. "navigationBarTitleText": "盘点记录",
  1187. "navigationStyle": "custom",
  1188. "navigationBarTextStyle": "white"
  1189. }
  1190. },
  1191. {
  1192. "path": "pages/equipment_ledger/lot_data/lot_data",
  1193. "style": {
  1194. "navigationBarTitleText": "物联数据",
  1195. "navigationStyle": "custom",
  1196. "navigationBarTextStyle": "white"
  1197. }
  1198. },
  1199. // mes
  1200. {
  1201. "path": "pages/production/report/index",
  1202. "style": {
  1203. "navigationBarTitleText": "生产报工",
  1204. "navigationStyle": "custom",
  1205. "navigationBarTextStyle": "white"
  1206. }
  1207. },
  1208. {
  1209. "path": "pages/production/report/orderMsg",
  1210. "style": {
  1211. "navigationBarTitleText": "订单信息",
  1212. "navigationStyle": "custom",
  1213. "navigationBarTextStyle": "white"
  1214. }
  1215. },
  1216. {
  1217. "path": "pages/production/report/handleReport",
  1218. "style": {
  1219. "navigationBarTitleText": "工序报工",
  1220. "navigationStyle": "custom",
  1221. "navigationBarTextStyle": "white"
  1222. }
  1223. },
  1224. {
  1225. "path": "pages/production/order/index",
  1226. "style": {
  1227. "navigationBarTitleText": "生产工单",
  1228. "navigationStyle": "custom",
  1229. "navigationBarTextStyle": "white"
  1230. }
  1231. },
  1232. {
  1233. "path": "pages/production/order/detail",
  1234. "style": {
  1235. "navigationBarTitleText": " ",
  1236. "navigationStyle": "custom",
  1237. "navigationBarTextStyle": "white"
  1238. }
  1239. },
  1240. {
  1241. "path": "pages/production/order/prepare/preparation",
  1242. "style": {
  1243. "navigationBarTitleText": " ",
  1244. "navigationStyle": "custom",
  1245. "navigationBarTextStyle": "white"
  1246. }
  1247. },
  1248. {
  1249. "path": "pages/production/order/prepare/material",
  1250. "style": {
  1251. "navigationBarTitleText": "领料需求清单",
  1252. "navigationStyle": "custom",
  1253. "navigationBarTextStyle": "white"
  1254. }
  1255. },
  1256. {
  1257. "path": "pages/production/order/prepare/addpick",
  1258. "style": {
  1259. "navigationBarTitleText": "添加领料",
  1260. "navigationStyle": "custom",
  1261. "navigationBarTextStyle": "white"
  1262. }
  1263. },
  1264. {
  1265. "path": "pages/production/order/prepare/comfirm",
  1266. "style": {
  1267. "navigationBarTitleText": "领料清单确认",
  1268. "navigationStyle": "custom",
  1269. "navigationBarTextStyle": "white"
  1270. }
  1271. },
  1272. {
  1273. "path": "pages/production/execute/extrusion/index",
  1274. "style": {
  1275. "navigationBarTitleText": "成型-生产工单",
  1276. "navigationStyle": "custom",
  1277. "navigationBarTextStyle": "white"
  1278. }
  1279. },
  1280. {
  1281. "path": "pages/production/execute/extrusion/detail",
  1282. "style": {
  1283. "navigationBarTitleText": "成型-基本信息",
  1284. "navigationStyle": "custom",
  1285. "navigationBarTextStyle": "white"
  1286. }
  1287. },
  1288. {
  1289. "path": "pages/production/execute/extrusion/report",
  1290. "style": {
  1291. "navigationBarTitleText": "成型-报工",
  1292. "navigationStyle": "custom",
  1293. "navigationBarTextStyle": "white"
  1294. }
  1295. },
  1296. {
  1297. "path": "pages/production/execute/extrusion/preparation",
  1298. "style": {
  1299. "navigationBarTitleText": "成型-准备",
  1300. "navigationStyle": "custom",
  1301. "navigationBarTextStyle": "white"
  1302. }
  1303. },
  1304. {
  1305. "path": "pages/production/execute/drying/index",
  1306. "style": {
  1307. "navigationBarTitleText": "自然干燥-生产工单",
  1308. "navigationStyle": "custom",
  1309. "navigationBarTextStyle": "white"
  1310. }
  1311. },
  1312. {
  1313. "path": "pages/production/execute/drying/picking",
  1314. "style": {
  1315. "navigationBarTitleText": "自然干燥-投料",
  1316. "navigationStyle": "custom",
  1317. "navigationBarTextStyle": "white"
  1318. }
  1319. },
  1320. {
  1321. "path": "pages/production/execute/drying/report",
  1322. "style": {
  1323. "navigationBarTitleText": "自然干燥-报工",
  1324. "navigationStyle": "custom",
  1325. "navigationBarTextStyle": "white"
  1326. }
  1327. },
  1328. {
  1329. "path": "pages/production/execute/heating/index",
  1330. "style": {
  1331. "navigationBarTitleText": "升温干燥-生产工单",
  1332. "navigationStyle": "custom",
  1333. "navigationBarTextStyle": "white"
  1334. }
  1335. },
  1336. {
  1337. "path": "pages/production/execute/heating/detail",
  1338. "style": {
  1339. "navigationBarTitleText": "升温干燥-基本信息",
  1340. "navigationStyle": "custom",
  1341. "navigationBarTextStyle": "white"
  1342. }
  1343. },
  1344. {
  1345. "path": "pages/production/execute/heating/picking",
  1346. "style": {
  1347. "navigationBarTitleText": "升温干燥-投料",
  1348. "navigationStyle": "custom",
  1349. "navigationBarTextStyle": "white"
  1350. }
  1351. },
  1352. {
  1353. "path": "pages/production/execute/heating/report",
  1354. "style": {
  1355. "navigationBarTitleText": "升温干燥-报工",
  1356. "navigationStyle": "custom",
  1357. "navigationBarTextStyle": "white"
  1358. }
  1359. },
  1360. {
  1361. "path": "pages/production/execute/halfAdded/index",
  1362. "style": {
  1363. "navigationBarTitleText": "半加定长-生产工单",
  1364. "navigationStyle": "custom",
  1365. "navigationBarTextStyle": "white"
  1366. }
  1367. },
  1368. {
  1369. "path": "pages/production/execute/halfAdded/detail",
  1370. "style": {
  1371. "navigationBarTitleText": "半加定长-基本信息",
  1372. "navigationStyle": "custom",
  1373. "navigationBarTextStyle": "white"
  1374. }
  1375. },
  1376. {
  1377. "path": "pages/production/execute/halfAdded/report",
  1378. "style": {
  1379. "navigationBarTitleText": "半加定长-报工",
  1380. "navigationStyle": "custom",
  1381. "navigationBarTextStyle": "white"
  1382. }
  1383. },
  1384. {
  1385. "path": "pages/production/execute/halfAdded/picking",
  1386. "style": {
  1387. "navigationBarTitleText": "半加定长-投料",
  1388. "navigationStyle": "custom",
  1389. "navigationBarTextStyle": "white"
  1390. }
  1391. },
  1392. {
  1393. "path": "pages/production/execute/picking/index",
  1394. "style": {
  1395. "navigationBarTitleText": "领料",
  1396. "navigationStyle": "custom",
  1397. "navigationBarTextStyle": "white"
  1398. }
  1399. },
  1400. // =================== PDA =======
  1401. {
  1402. "path": "pages/pda/workOrder/index/index",
  1403. "style": {
  1404. "navigationBarTitleText": "工单列表",
  1405. "navigationStyle": "custom",
  1406. "navigationBarTextStyle": "white"
  1407. }
  1408. },
  1409. {
  1410. "path": "pages/pda/picking/index/index",
  1411. "style": {
  1412. "navigationBarTitleText": "领料",
  1413. "navigationStyle": "custom",
  1414. "navigationBarTextStyle": "white"
  1415. }
  1416. },
  1417. {
  1418. "path": "pages/pda/picking/details",
  1419. "style": {
  1420. "navigationBarTitleText": "领料",
  1421. "navigationStyle": "custom",
  1422. "navigationBarTextStyle": "white"
  1423. }
  1424. },
  1425. {
  1426. "path": "pages/pda/feeding/index/index",
  1427. "style": {
  1428. "navigationBarTitleText": "投料",
  1429. "navigationStyle": "custom",
  1430. "navigationBarTextStyle": "white"
  1431. }
  1432. },
  1433. {
  1434. "path": "pages/pda/feeding/details",
  1435. "style": {
  1436. "navigationStyle": "custom",
  1437. "navigationBarTextStyle": "white"
  1438. }
  1439. },
  1440. {
  1441. "path": "pages/pda/picking/bill/index",
  1442. "style": {
  1443. "navigationBarTitleText": "领料单",
  1444. "navigationStyle": "custom",
  1445. "navigationBarTextStyle": "white"
  1446. }
  1447. },
  1448. {
  1449. "path": "pages/pda/material_return/index/index",
  1450. "style": {
  1451. "navigationBarTitleText": "退料",
  1452. "navigationStyle": "custom",
  1453. "navigationBarTextStyle": "white"
  1454. }
  1455. },
  1456. {
  1457. "path": "pages/pda/nonconforming/index/index",
  1458. "style": {
  1459. "navigationBarTitleText": "不合格品处置",
  1460. "navigationStyle": "custom",
  1461. "navigationBarTextStyle": "white"
  1462. }
  1463. },
  1464. {
  1465. "path": "pages/pda/by_product_recovery/index/index",
  1466. "style": {
  1467. "navigationBarTitleText": "副产品回收",
  1468. "navigationStyle": "custom",
  1469. "navigationBarTextStyle": "white"
  1470. }
  1471. },
  1472. {
  1473. "path": "pages/pda/work_order_handover/index/index",
  1474. "style": {
  1475. "navigationBarTitleText": "工单交接",
  1476. "navigationStyle": "custom",
  1477. "navigationBarTextStyle": "white"
  1478. }
  1479. },
  1480. {
  1481. "path": "pages/pda/work_order_details/index/index",
  1482. "style": {
  1483. "navigationBarTitleText": "工单详情",
  1484. "navigationStyle": "custom",
  1485. "navigationBarTextStyle": "white"
  1486. }
  1487. },
  1488. {
  1489. "path": "pages/pda/work_order_details/index/index",
  1490. "style": {
  1491. "navigationBarTitleText": "",
  1492. "enablePullDownRefresh": false
  1493. }
  1494. },
  1495. {
  1496. "path": "pages/pda/workOrder/extrusionMolding/index",
  1497. "style": {
  1498. "navigationBarTitleText": "",
  1499. "navigationStyle": "custom",
  1500. "navigationBarTextStyle": "white"
  1501. }
  1502. },
  1503. {
  1504. "path": "pages/pda/workOrder/search/index",
  1505. "style": {
  1506. "navigationBarTitleText": "搜索",
  1507. "navigationStyle": "custom",
  1508. "navigationBarTextStyle": "white"
  1509. }
  1510. },
  1511. {
  1512. "path": "pages/pda/feeding/bill/index",
  1513. "style": {
  1514. "navigationStyle": "custom",
  1515. "navigationBarTextStyle": "white"
  1516. }
  1517. },
  1518. {
  1519. "path": "pages/pda/feeding/outbound/index",
  1520. "style": {
  1521. "navigationStyle": "custom",
  1522. "navigationBarTextStyle": "white"
  1523. }
  1524. },
  1525. {
  1526. "path": "pages/pda/jobBooking/index/index",
  1527. "style": {
  1528. "navigationStyle": "custom",
  1529. "navigationBarTextStyle": "white"
  1530. }
  1531. },
  1532. {
  1533. "path": "pages/pda/turnover/index/index",
  1534. "style": {
  1535. "navigationStyle": "custom",
  1536. "navigationBarTextStyle": "white"
  1537. }
  1538. },
  1539. {
  1540. "path": "pages/pda/workOrder/index/details",
  1541. "style": {
  1542. "navigationStyle": "custom",
  1543. "navigationBarTextStyle": "white"
  1544. }
  1545. },
  1546. {
  1547. "path": "pages/pda/sample/index/index",
  1548. "style": {
  1549. "navigationStyle": "custom",
  1550. "navigationBarTextStyle": "white"
  1551. }
  1552. },
  1553. {
  1554. "path": "pages/pda/sample/index/jobBooking",
  1555. "style": {
  1556. "navigationStyle": "custom",
  1557. "navigationBarTextStyle": "white"
  1558. }
  1559. },
  1560. {
  1561. "path": "pages/pda/sample/inspection/index",
  1562. "style": {
  1563. "navigationStyle": "custom",
  1564. "navigationBarTextStyle": "white"
  1565. }
  1566. },
  1567. {
  1568. "path": "pages/pda/sample/inspection/job",
  1569. "style": {
  1570. "navigationStyle": "custom",
  1571. "navigationBarTextStyle": "white"
  1572. }
  1573. },
  1574. {
  1575. "path": "pages/pda/warehousing/index",
  1576. "style": {
  1577. "navigationStyle": "custom",
  1578. "navigationBarTextStyle": "white"
  1579. }
  1580. },
  1581. {
  1582. "path": "pages/pda/feeding/single",
  1583. "style": {
  1584. "navigationStyle": "custom",
  1585. "navigationBarTextStyle": "white"
  1586. }
  1587. },
  1588. {
  1589. "path": "pages/pda/outsourcing/index/index",
  1590. "style": {
  1591. "navigationStyle": "custom",
  1592. "navigationBarTextStyle": "white"
  1593. }
  1594. },
  1595. {
  1596. "path": "pages/pda/turnover/index/quality",
  1597. "style": {
  1598. "navigationStyle": "custom",
  1599. "navigationBarTextStyle": "white"
  1600. }
  1601. }
  1602. ],
  1603. "tabBar": {
  1604. "color": "#908f8f",
  1605. "selectedColor": "#157a2c",
  1606. "borderStyle": "black",
  1607. "backgroundColor": "#ffffff",
  1608. "fontSize": "14px",
  1609. "list": [
  1610. {
  1611. "pagePath": "pages/home/home",
  1612. "iconPath": "static/tab/home.png",
  1613. "selectedIconPath": "static/tab/home_.png",
  1614. "text": "首页"
  1615. },
  1616. {
  1617. "pagePath": "pages/index/index",
  1618. "iconPath": "static/tab/waishemianban.png",
  1619. "selectedIconPath": "static/tab/waishemianban_.png",
  1620. "text": "工作"
  1621. },
  1622. {
  1623. "pagePath": "pages/center/center",
  1624. "iconPath": "static/tab/wode-wode.png",
  1625. "selectedIconPath": "static/tab/wode-wode_.png",
  1626. "text": "我的"
  1627. }
  1628. ]
  1629. },
  1630. "globalStyle": {
  1631. "navigationBarTextStyle": "black",
  1632. "navigationBarTitleText": "资产评估",
  1633. "navigationBarBackgroundColor": "#fff",
  1634. "backgroundColor": "#fff"
  1635. },
  1636. "app-plus": {
  1637. "softinputMode": "adjustPan"
  1638. }
  1639. }