pages.json 44 KB

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