pages.json 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [
  6. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/login/login",
  9. "style": {
  10. "navigationBarTitleText": "登录",
  11. "navigationStyle": "custom",
  12. "navigationBarTextStyle": "white"
  13. }
  14. },
  15. {
  16. "path": "pages/index/index",
  17. "style": {
  18. "navigationBarTitleText": "工作中心",
  19. "navigationStyle": "custom",
  20. "navigationBarTextStyle": "black"
  21. }
  22. },
  23. {
  24. "path": "pages/home/home",
  25. "style": {
  26. "navigationBarTitleText": "工作台",
  27. "navigationStyle": "custom",
  28. "navigationBarTextStyle": "black"
  29. }
  30. },
  31. {
  32. "path": "pages/center/center",
  33. "style": {
  34. "navigationBarTitleText": "我的",
  35. "navigationStyle": "custom",
  36. "navigationBarTextStyle": "black"
  37. }
  38. },
  39. {
  40. "path": "pages/home/myTicket/myTicket",
  41. "style": {
  42. "navigationBarTitleText": "我的工单",
  43. "navigationStyle": "custom",
  44. "navigationBarTextStyle": "white"
  45. }
  46. },
  47. {
  48. "path": "pages/home/myTicket/detail",
  49. "style": {
  50. "navigationBarTitleText": "关联工单",
  51. "navigationStyle": "custom",
  52. "navigationBarTextStyle": "white"
  53. }
  54. },
  55. {
  56. "path": "pages/home/myTicket/index",
  57. "style": {
  58. "navigationBarTitleText": "详情",
  59. "navigationStyle": "custom",
  60. "navigationBarTextStyle": "white"
  61. }
  62. },
  63. {
  64. "path": "pages/home/wt/message/message",
  65. "style": {
  66. "navigationBarTitleText": "我的消息",
  67. "navigationStyle": "custom",
  68. "navigationBarTextStyle": "white"
  69. }
  70. },
  71. {
  72. "path": "pages/home/wt/todo/todo",
  73. "style": {
  74. "navigationBarTitleText": "我的待办",
  75. "navigationStyle": "custom",
  76. "navigationBarTextStyle": "white"
  77. }
  78. },
  79. {
  80. "path": "pages/home/wt/done/done",
  81. "style": {
  82. "navigationBarTitleText": "我的已办",
  83. "navigationStyle": "custom",
  84. "navigationBarTextStyle": "white"
  85. }
  86. },
  87. {
  88. "path": "pages/home/wt/components/detail",
  89. "style": {
  90. "navigationBarTitleText": "流程详情",
  91. "navigationStyle": "custom",
  92. "navigationBarTextStyle": "white"
  93. }
  94. },
  95. {
  96. "path": "pages/home/wt/components/processTask",
  97. "style": {
  98. "navigationBarTitleText": "处理流程任务",
  99. "navigationStyle": "custom",
  100. "navigationBarTextStyle": "white"
  101. }
  102. },
  103. {
  104. "path": "pages/home/wt/components/businessOpportunity/processTask",
  105. "style": {
  106. "navigationBarTitleText": "",
  107. "navigationStyle": "custom",
  108. "navigationBarTextStyle": "white"
  109. }
  110. },
  111. {
  112. "path": "pages/home/wt/components/contactApplication/processTask",
  113. "style": {
  114. "navigationBarTitleText": "",
  115. "navigationStyle": "custom",
  116. "navigationBarTextStyle": "white"
  117. }
  118. },
  119. {
  120. "path": "pages/home/wt/components/feeApplication/processTask",
  121. "style": {
  122. "navigationBarTitleText": "费用申请单审批",
  123. "navigationStyle": "custom",
  124. "navigationBarTextStyle": "white"
  125. }
  126. },
  127. {
  128. "path": "pages/home/wt/components/measuringToolInspection/processTask",
  129. "style": {
  130. "navigationBarTitleText": "",
  131. "navigationStyle": "custom",
  132. "navigationBarTextStyle": "white"
  133. }
  134. },
  135. {
  136. "path": "pages/home/wt/components/pricingManage/processTask",
  137. "style": {
  138. "navigationBarTitleText": "",
  139. "navigationStyle": "custom",
  140. "navigationBarTextStyle": "white"
  141. }
  142. },
  143. {
  144. "path": "pages/home/wt/components/purchaseContract/processTask",
  145. "style": {
  146. "navigationBarTitleText": "",
  147. "navigationStyle": "custom",
  148. "navigationBarTextStyle": "white"
  149. }
  150. },
  151. {
  152. "path": "pages/home/wt/components/purchaseNeedManage/processTask",
  153. "style": {
  154. "navigationBarTitleText": "",
  155. "navigationStyle": "custom",
  156. "navigationBarTextStyle": "white"
  157. }
  158. },
  159. {
  160. "path": "pages/home/wt/components/purchaseOrder/processTask",
  161. "style": {
  162. "navigationBarTitleText": "",
  163. "navigationStyle": "custom",
  164. "navigationBarTextStyle": "white"
  165. }
  166. },
  167. {
  168. "path": "pages/home/wt/components/purchasePlanManage/processTask",
  169. "style": {
  170. "navigationBarTitleText": "",
  171. "navigationStyle": "custom",
  172. "navigationBarTextStyle": "white"
  173. }
  174. },
  175. {
  176. "path": "pages/home/wt/components/purchaseReceiving/processTask",
  177. "style": {
  178. "navigationBarTitleText": "",
  179. "navigationStyle": "custom",
  180. "navigationBarTextStyle": "white"
  181. }
  182. },
  183. {
  184. "path": "pages/home/wt/components/purchaseReturn/processTask",
  185. "style": {
  186. "navigationBarTitleText": "",
  187. "navigationStyle": "custom",
  188. "navigationBarTextStyle": "white"
  189. }
  190. },
  191. {
  192. "path": "pages/home/wt/components/salesContract/processTask",
  193. "style": {
  194. "navigationBarTitleText": "",
  195. "navigationStyle": "custom",
  196. "navigationBarTextStyle": "white"
  197. }
  198. },
  199. {
  200. "path": "pages/home/wt/components/salesDelivery/processTask",
  201. "style": {
  202. "navigationBarTitleText": "",
  203. "navigationStyle": "custom",
  204. "navigationBarTextStyle": "white"
  205. }
  206. },
  207. {
  208. "path": "pages/home/wt/components/salesOrder/processTask",
  209. "style": {
  210. "navigationBarTitleText": "",
  211. "navigationStyle": "custom",
  212. "navigationBarTextStyle": "white"
  213. }
  214. },
  215. {
  216. "path": "pages/home/wt/components/salesReturn/processTask",
  217. "style": {
  218. "navigationBarTitleText": "",
  219. "navigationStyle": "custom",
  220. "navigationBarTextStyle": "white"
  221. }
  222. },
  223. {
  224. "path": "pages/home/wt/components/formParser/routerView",
  225. "style": {
  226. "navigationBarTitleText": "",
  227. "navigationStyle": "custom",
  228. "navigationBarTextStyle": "white"
  229. }
  230. },
  231. // {
  232. // "path": "pages/home/wt/components/feeApplication/taskForm",
  233. // "style": {
  234. // "navigationBarTitleText": "111",
  235. // "navigationStyle": "custom",
  236. // "navigationBarTextStyle": "white"
  237. // }
  238. // },
  239. {
  240. "path": "pages/home/backlog/result",
  241. "style": {
  242. "navigationBarTitleText": "提示",
  243. "autoBackButton": false
  244. // "navigationBarTextStyle": "white"
  245. }
  246. },
  247. {
  248. "path": "pages/home/backlog/planApproval",
  249. "style": {
  250. "navigationBarTitleText": "我的待办计划审批",
  251. "navigationStyle": "custom",
  252. "navigationBarTextStyle": "white"
  253. }
  254. },
  255. {
  256. "path": "pages/home/backlog/planNatureApproval",
  257. "style": {
  258. "navigationBarTitleText": "我的待办计划审批",
  259. "navigationStyle": "custom",
  260. "navigationBarTextStyle": "white"
  261. }
  262. },
  263. {
  264. "path": "pages/home/backlog/approve_enter",
  265. "style": {
  266. "navigationBarTitleText": "入库单审批",
  267. "navigationStyle": "custom",
  268. "navigationBarTextStyle": "white"
  269. }
  270. },
  271. {
  272. "path": "pages/home/backlog/approve_out",
  273. "style": {
  274. "navigationBarTitleText": "出库单审批",
  275. "navigationStyle": "custom",
  276. "navigationBarTextStyle": "white"
  277. }
  278. },
  279. {
  280. "path": "pages/home/backlog/approve_allot",
  281. "style": {
  282. "navigationBarTitleText": "库存调拨审批",
  283. "navigationStyle": "custom",
  284. "navigationBarTextStyle": "white"
  285. }
  286. },
  287. {
  288. "path": "pages/home/backlog/approve_approve_allot",
  289. "style": {
  290. "navigationBarTitleText": "报损报溢审批",
  291. "navigationStyle": "custom",
  292. "navigationBarTextStyle": "white"
  293. }
  294. },
  295. {
  296. "path": "pages/home/backlog/sparepartDetail",
  297. "style": {
  298. "navigationBarTitleText": "申领备品备件详情",
  299. "navigationStyle": "custom",
  300. "navigationBarTextStyle": "white"
  301. }
  302. },
  303. {
  304. "path": "pages/tour_tally/order/order",
  305. "style": {
  306. "navigationBarTitleText": "巡点检",
  307. "navigationStyle": "custom",
  308. "navigationBarTextStyle": "white"
  309. }
  310. },
  311. {
  312. "path": "pages/tour_tally/check/index",
  313. "style": {
  314. "navigationBarTitleText": "巡点检检查",
  315. "navigationStyle": "custom",
  316. "navigationBarTextStyle": "white"
  317. }
  318. },
  319. {
  320. "path": "pages/tour_tally/check/detail",
  321. "style": {
  322. "navigationBarTitleText": "巡点检检查详情",
  323. "navigationStyle": "custom",
  324. "navigationBarTextStyle": "white"
  325. }
  326. },
  327. {
  328. "path": "pages/tour_tally/accept/index",
  329. "style": {
  330. "navigationBarTitleText": "受理巡点检工单",
  331. "navigationStyle": "custom",
  332. "navigationBarTextStyle": "white"
  333. }
  334. },
  335. {
  336. "path": "pages/tour_tally/inventory/inventory",
  337. "style": {
  338. "navigationBarTitleText": "巡点检列表",
  339. "navigationStyle": "custom",
  340. "navigationBarTextStyle": "white"
  341. }
  342. },
  343. {
  344. "path": "pages/tour_tally/detail/detail",
  345. "style": {
  346. "navigationBarTitleText": "详情",
  347. "navigationStyle": "custom",
  348. "navigationBarTextStyle": "white"
  349. }
  350. },
  351. {
  352. "path": "pages/tour_tally/turn_send/turn_send",
  353. "style": {
  354. "navigationBarTitleText": "转派",
  355. "navigationStyle": "custom",
  356. "navigationBarTextStyle": "white"
  357. }
  358. },
  359. {
  360. "path": "pages/tour_tally/submitted_ministry/submitted_ministry",
  361. "style": {
  362. "navigationBarTitleText": "报工",
  363. "navigationStyle": "custom",
  364. "navigationBarTextStyle": "white"
  365. }
  366. },
  367. {
  368. "path": "pages/tour_tally/turn_send_user/turn_send_user",
  369. "style": {
  370. "navigationBarTitleText": "转派人员",
  371. "navigationStyle": "custom",
  372. "navigationBarTextStyle": "white"
  373. }
  374. },
  375. {
  376. "path": "pages/tour_tally/defects/defects",
  377. "style": {
  378. "navigationBarTitleText": "缺陷",
  379. "navigationStyle": "custom",
  380. "navigationBarTextStyle": "white"
  381. }
  382. },
  383. {
  384. "path": "pages/quantity/detail/detail",
  385. "style": {
  386. "navigationBarTitleText": "量具送检详情",
  387. "navigationStyle": "custom",
  388. "navigationBarTextStyle": "white"
  389. }
  390. },
  391. {
  392. "path": "pages/quantity/check/index",
  393. "style": {
  394. "navigationBarTitleText": "量具送检检查",
  395. "navigationStyle": "custom",
  396. "navigationBarTextStyle": "white"
  397. }
  398. },
  399. {
  400. "path": "pages/quantity/check/detail",
  401. "style": {
  402. "navigationBarTitleText": "量具送检检查详情",
  403. "navigationStyle": "custom",
  404. "navigationBarTextStyle": "white"
  405. }
  406. },
  407. {
  408. "path": "pages/maintenance/order/order",
  409. "style": {
  410. "navigationBarTitleText": "保养工单",
  411. "navigationStyle": "custom",
  412. "navigationBarTextStyle": "white"
  413. }
  414. },
  415. {
  416. "path": "pages/maintenance/check/index",
  417. "style": {
  418. "navigationBarTitleText": "保养中",
  419. "navigationStyle": "custom",
  420. "navigationBarTextStyle": "white"
  421. }
  422. },
  423. {
  424. "path": "pages/maintenance/check/detail",
  425. "style": {
  426. "navigationBarTitleText": "保养详情",
  427. "navigationStyle": "custom",
  428. "navigationBarTextStyle": "white"
  429. }
  430. },
  431. {
  432. "path": "pages/maintenance/check/register",
  433. "style": {
  434. "navigationBarTitleText": "备品备件登记",
  435. "navigationStyle": "custom",
  436. "navigationBarTextStyle": "white"
  437. }
  438. },
  439. {
  440. "path": "pages/maintenance/accept/index",
  441. "style": {
  442. "navigationBarTitleText": "受理保养工单",
  443. "navigationStyle": "custom",
  444. "navigationBarTextStyle": "white"
  445. }
  446. },
  447. {
  448. "path": "pages/maintenance/detail/detail",
  449. "style": {
  450. "navigationBarTitleText": "详情",
  451. "navigationStyle": "custom",
  452. "navigationBarTextStyle": "white"
  453. }
  454. },
  455. {
  456. "path": "pages/maintenance/turn_send/turn_send",
  457. "style": {
  458. "navigationBarTitleText": "转派",
  459. "navigationStyle": "custom",
  460. "navigationBarTextStyle": "white"
  461. }
  462. },
  463. {
  464. "path": "pages/maintenance/submitted_ministry/submitted_ministry",
  465. "style": {
  466. "navigationBarTitleText": "报工",
  467. "navigationStyle": "custom",
  468. "navigationBarTextStyle": "white"
  469. }
  470. },
  471. {
  472. "path": "pages/maintenance/turn_send_user/turn_send_user",
  473. "style": {
  474. "navigationBarTitleText": "转派人员",
  475. "navigationStyle": "custom",
  476. "navigationBarTextStyle": "white"
  477. }
  478. },
  479. {
  480. "path": "pages/maintenance/defects/defects",
  481. "style": {
  482. "navigationBarTitleText": "缺陷",
  483. "navigationStyle": "custom",
  484. "navigationBarTextStyle": "white"
  485. }
  486. },
  487. // {
  488. // "path": "pages/maintain_service/order/order",
  489. // "style": {
  490. // "navigationBarTitleText": "维修工单",
  491. // "navigationStyle": "custom",
  492. // "navigationBarTextStyle": "white"
  493. // }
  494. // },
  495. // {
  496. // "path": "pages/maintain_service/detail/detail",
  497. // "style": {
  498. // "navigationBarTitleText": "详情",
  499. // "navigationStyle": "custom",
  500. // "navigationBarTextStyle": "white"
  501. // }
  502. // },
  503. // {
  504. // "path": "pages/maintain_service/submitted_ministry/submitted_ministry",
  505. // "style": {
  506. // "navigationBarTitleText": "报工",
  507. // "navigationStyle": "custom",
  508. // "navigationBarTextStyle": "white"
  509. // }
  510. // },
  511. // {
  512. // "path": "pages/maintain_service/sparepart/sparepart",
  513. // "style": {
  514. // "navigationBarTitleText": "选择备品备件",
  515. // "navigationStyle": "custom",
  516. // "navigationBarTextStyle": "white"
  517. // }
  518. // },
  519. // {
  520. // "path": "pages/maintain_service/sparepart/sparepartDetail",
  521. // "style": {
  522. // "navigationBarTitleText": "备品备件详情",
  523. // "navigationStyle": "custom",
  524. // "navigationBarTextStyle": "white"
  525. // }
  526. // },
  527. {
  528. "path": "pages/maintenanceWorkorder/order/order",
  529. "style": {
  530. "navigationBarTitleText": "维修工单",
  531. "navigationStyle": "custom",
  532. "navigationBarTextStyle": "white"
  533. }
  534. },
  535. {
  536. "path": "pages/maintenanceWorkorder/sparepart/index",
  537. "style": {
  538. "navigationBarTitleText": "备品备件申请单",
  539. "navigationStyle": "custom",
  540. "navigationBarTextStyle": "white"
  541. }
  542. },
  543. {
  544. "path": "pages/maintenanceWorkorder/sparepart/sparepart",
  545. "style": {
  546. "navigationBarTitleText": "申请备品备件",
  547. "navigationStyle": "custom",
  548. "navigationBarTextStyle": "white"
  549. }
  550. },
  551. {
  552. "path": "pages/maintenanceWorkorder/detail/detail",
  553. "style": {
  554. "navigationBarTitleText": "详情",
  555. "navigationStyle": "custom",
  556. "navigationBarTextStyle": "white"
  557. }
  558. },
  559. {
  560. "path": "pages/maintenanceWorkorder/submitted_ministry/submitted_ministry",
  561. "style": {
  562. "navigationBarTitleText": "报工",
  563. "navigationStyle": "custom",
  564. "navigationBarTextStyle": "white"
  565. }
  566. },
  567. {
  568. "path": "pages/maintenanceWorkorder/sparepart/sparepartList",
  569. "style": {
  570. "navigationBarTitleText": "选择备品备件",
  571. "navigationStyle": "custom",
  572. "navigationBarTextStyle": "white"
  573. }
  574. },
  575. {
  576. "path": "pages/maintenanceWorkorder/sparepart/sparepartDetail",
  577. "style": {
  578. "navigationBarTitleText": "备品备件详情",
  579. "navigationStyle": "custom",
  580. "navigationBarTextStyle": "white"
  581. }
  582. },
  583. {
  584. "path": "pages/storage_inventory/add/add",
  585. "style": {
  586. "navigationBarTitleText": "",
  587. "enablePullDownRefresh": false
  588. }
  589. },
  590. {
  591. "path": "pages/storage_inventory/Inventory_list/Inventory_list",
  592. "style": {
  593. "navigationBarTitleText": "",
  594. "enablePullDownRefresh": false
  595. }
  596. },
  597. {
  598. "path": "pages/sparepart/order/order",
  599. "style": {
  600. "navigationBarTitleText": "备品备件",
  601. "navigationStyle": "custom",
  602. "navigationBarTextStyle": "white"
  603. }
  604. },
  605. {
  606. "path": "pages/sparepart/detail/detail",
  607. "style": {
  608. "navigationBarTitleText": "详情",
  609. "navigationStyle": "custom",
  610. "navigationBarTextStyle": "white"
  611. }
  612. },
  613. {
  614. "path": "pages/put_storage/order/index",
  615. "style": {
  616. "navigationBarTitleText": "入库台账",
  617. "navigationStyle": "custom",
  618. "navigationBarTextStyle": "white"
  619. }
  620. },
  621. {
  622. "path": "pages/put_storage/details/details",
  623. "style": {
  624. "navigationBarTitleText": "入库台账",
  625. "navigationStyle": "custom",
  626. "navigationBarTextStyle": "white"
  627. }
  628. },
  629. {
  630. "path": "pages/put_storage/add/index",
  631. "style": {
  632. "navigationBarTitleText": "新增入库单",
  633. "navigationStyle": "custom",
  634. "navigationBarTextStyle": "white"
  635. }
  636. },
  637. {
  638. "path": "pages/put_storage/linkage/index",
  639. "style": {
  640. "navigationBarTitleText": "选择备品备件",
  641. "navigationStyle": "custom",
  642. "navigationBarTextStyle": "white"
  643. }
  644. },
  645. {
  646. "path": "pages/outbound/order/index",
  647. "style": {
  648. "navigationBarTitleText": "入库台账",
  649. "navigationStyle": "custom",
  650. "navigationBarTextStyle": "white"
  651. }
  652. },
  653. {
  654. "path": "pages/outbound/details/details",
  655. "style": {
  656. "navigationBarTitleText": "入库台账",
  657. "navigationStyle": "custom",
  658. "navigationBarTextStyle": "white"
  659. }
  660. },
  661. {
  662. "path": "pages/outbound/add/index",
  663. "style": {
  664. "navigationBarTitleText": "新增入库单",
  665. "navigationStyle": "custom",
  666. "navigationBarTextStyle": "white"
  667. }
  668. },
  669. {
  670. "path": "pages/outbound/linkage/index",
  671. "style": {
  672. "navigationBarTitleText": "选择备品备件",
  673. "navigationStyle": "custom",
  674. "navigationBarTextStyle": "white"
  675. }
  676. },
  677. {
  678. "path": "pages/repair/order/order",
  679. "style": {
  680. "navigationBarTitleText": "报修管理",
  681. "navigationStyle": "custom",
  682. "navigationBarTextStyle": "white"
  683. }
  684. },
  685. {
  686. "path": "pages/repair/repair/index",
  687. "style": {
  688. "navigationBarTitleText": "报修",
  689. "navigationStyle": "custom",
  690. "navigationBarTextStyle": "white"
  691. }
  692. },
  693. {
  694. "path": "pages/repair/repair/selectEquipment",
  695. "style": {
  696. "navigationBarTitleText": "选择设备",
  697. "navigationStyle": "custom",
  698. "navigationBarTextStyle": "white"
  699. }
  700. },
  701. {
  702. "path": "pages/repair/select_repair/index",
  703. "style": {
  704. "navigationBarTitleText": "选择设备",
  705. "navigationStyle": "custom",
  706. "navigationBarTextStyle": "white"
  707. }
  708. },
  709. {
  710. "path": "pages/repair/sparepart/index",
  711. "style": {
  712. "navigationBarTitleText": "备品备件",
  713. "navigationStyle": "custom",
  714. "navigationBarTextStyle": "white"
  715. }
  716. },
  717. {
  718. "path": "pages/promp/promp",
  719. "style": {
  720. "navigationBarTitleText": "提示",
  721. "navigationStyle": "custom",
  722. "navigationBarTextStyle": "white"
  723. }
  724. },
  725. {
  726. "path": "pages/sparepart/return/return",
  727. "style": {
  728. "navigationBarTitleText": "",
  729. "enablePullDownRefresh": false
  730. }
  731. },
  732. {
  733. "path": "pages/tour_tally/sparepart/sparepart",
  734. "style": {
  735. "navigationBarTitleText": "选择备品备件",
  736. "navigationStyle": "custom",
  737. "navigationBarTextStyle": "white"
  738. }
  739. },
  740. {
  741. "path": "pages/maintenance/sparepart/sparepart",
  742. "style": {
  743. "navigationBarTitleText": "选择备品备件",
  744. "navigationStyle": "custom",
  745. "navigationBarTextStyle": "white"
  746. }
  747. },
  748. {
  749. "path": "pages/maintenance/sparepart/sparepartDetail",
  750. "style": {
  751. "navigationBarTitleText": "备品备件详情",
  752. "navigationStyle": "custom",
  753. "navigationBarTextStyle": "white"
  754. }
  755. },
  756. {
  757. "path": "pages/sparepart/sparepart/sparepart",
  758. "style": {
  759. "navigationBarTitleText": "选择备品备件",
  760. "navigationStyle": "custom",
  761. "navigationBarTextStyle": "white"
  762. }
  763. },
  764. {
  765. "path": "pages/repair/detail/detail",
  766. "style": {
  767. "navigationBarTitleText": "详情",
  768. "navigationStyle": "custom",
  769. "navigationBarTextStyle": "white"
  770. }
  771. },
  772. {
  773. "path": "pages/center/about/about",
  774. "style": {
  775. "navigationBarTitleText": "关于我们",
  776. "navigationStyle": "custom",
  777. "navigationBarTextStyle": "white"
  778. }
  779. },
  780. {
  781. "path": "pages/center/mission/mission",
  782. "style": {
  783. "navigationBarTitleText": "我的任务",
  784. "navigationStyle": "custom",
  785. "navigationBarTextStyle": "white"
  786. }
  787. },
  788. {
  789. "path": "pages/standing_book/detail/detail",
  790. "style": {
  791. "navigationBarTitleText": "台账",
  792. "navigationStyle": "custom",
  793. "navigationBarTextStyle": "white"
  794. }
  795. },
  796. {
  797. "path": "pages/work/order/order",
  798. "style": {
  799. "navigationBarTitleText": "工单管理",
  800. "navigationStyle": "custom",
  801. "navigationBarTextStyle": "white"
  802. }
  803. },
  804. {
  805. "path": "pages/molds/detail/detail",
  806. "style": {
  807. "navigationBarTitleText": "模具台账",
  808. "navigationStyle": "custom",
  809. "navigationBarTextStyle": "black"
  810. }
  811. },
  812. //---------------------仓储管理--------------------
  813. //入库台账
  814. {
  815. "path": "pages/warehouse/enterHouse/index",
  816. "style": {
  817. "navigationBarTitleText": "入库台账",
  818. "navigationStyle": "custom",
  819. "navigationBarTextStyle": "white"
  820. }
  821. },
  822. {
  823. "path": "pages/warehouse/enterHouse/details",
  824. "style": {
  825. "navigationBarTitleText": "入库详情",
  826. "navigationStyle": "custom",
  827. "navigationBarTextStyle": "white"
  828. }
  829. },
  830. {
  831. "path": "pages/warehouse/enterHouse/addStock",
  832. "style": {
  833. "navigationBarTitleText": "新增入库单",
  834. "navigationStyle": "custom",
  835. "navigationBarTextStyle": "white"
  836. }
  837. },
  838. {
  839. "path": "pages/warehouse/enterHouse/batchNumEdit",
  840. "style": {
  841. "navigationBarTitleText": "批次号信息",
  842. "navigationStyle": "custom",
  843. "navigationBarTextStyle": "white"
  844. }
  845. },
  846. {
  847. "path": "pages/warehouse/enterHouse/selectEnterType",
  848. "style": {
  849. "navigationBarTitleText": "选择入库类别",
  850. "navigationStyle": "custom",
  851. "navigationBarTextStyle": "white"
  852. }
  853. },
  854. {
  855. "path": "pages/warehouse/enterHouse/batchDetails",
  856. "style": {
  857. "navigationBarTitleText": "入库批次号详情",
  858. "navigationStyle": "custom",
  859. "navigationBarTextStyle": "white"
  860. }
  861. },
  862. {
  863. "path": "pages/warehouse/enterHouse/components/remarks",
  864. "style": {
  865. "navigationBarTitleText": "备注",
  866. "navigationStyle": "custom",
  867. "navigationBarTextStyle": "white"
  868. }
  869. },
  870. {
  871. "path": "pages/warehouse/enterHouse/detailsType",
  872. "style": {
  873. "navigationStyle": "custom",
  874. "navigationBarTextStyle": "white"
  875. }
  876. },
  877. {
  878. "path": "pages/warehouse/enterHouse/components/scanCodeList",
  879. "style": {
  880. "navigationBarTitleText": "扫码列表",
  881. "navigationStyle": "custom",
  882. "navigationBarTextStyle": "white"
  883. }
  884. },
  885. //出库台账
  886. {
  887. "path": "pages/warehouse/outHouse/index",
  888. "style": {
  889. "navigationBarTitleText": "出库台账",
  890. "navigationStyle": "custom",
  891. "navigationBarTextStyle": "white"
  892. }
  893. },
  894. {
  895. "path": "pages/warehouse/outHouse/details",
  896. "style": {
  897. "navigationBarTitleText": "出库台账详情",
  898. "navigationStyle": "custom",
  899. "navigationBarTextStyle": "white"
  900. }
  901. },
  902. {
  903. "path": "pages/warehouse/outHouse/addStock",
  904. "style": {
  905. "navigationBarTitleText": "新增出库单",
  906. "navigationStyle": "custom",
  907. "navigationBarTextStyle": "white"
  908. }
  909. },
  910. {
  911. "path": "pages/warehouse/outHouse/selectOutType",
  912. "style": {
  913. "navigationBarTitleText": "选择出库类别",
  914. "navigationStyle": "custom",
  915. "navigationBarTextStyle": "white"
  916. }
  917. },
  918. {
  919. "path": "pages/warehouse/outHouse/selectCurSarepart",
  920. "style": {
  921. "navigationBarTitleText": "选择备品备件",
  922. "navigationStyle": "custom",
  923. "navigationBarTextStyle": "white"
  924. }
  925. },
  926. {
  927. "path": "pages/warehouse/outHouse/bucketSelect",
  928. "style": {
  929. "navigationBarTitleText": "选择桶号",
  930. "navigationStyle": "custom",
  931. "navigationBarTextStyle": "white"
  932. }
  933. },
  934. {
  935. "path": "pages/warehouse/outHouse/batchDetails",
  936. "style": {
  937. "navigationBarTitleText": "出库批次号详情",
  938. "navigationStyle": "custom",
  939. "navigationBarTextStyle": "white"
  940. }
  941. },
  942. {
  943. "path": "pages/warehouse/components/requisitionList",
  944. "style": {
  945. "navigationBarTitleText": "出入库申请单",
  946. "navigationStyle": "custom",
  947. "navigationBarTextStyle": "white"
  948. }
  949. },
  950. // //物料入库
  951. // {
  952. // "path": "pages/warehouse/material/index",
  953. // "style": {
  954. // "navigationBarTitleText": "物料入库单",
  955. // "navigationStyle": "custom",
  956. // "navigationBarTextStyle": "white"
  957. // }
  958. // }, {
  959. // "path": "pages/warehouse/material/addStock",
  960. // "style": {
  961. // "navigationBarTitleText": "新增物料入库单",
  962. // "navigationStyle": "custom",
  963. // "navigationBarTextStyle": "white"
  964. // }
  965. // }, {
  966. // "path": "pages/warehouse/material/addMaterial",
  967. // "style": {
  968. // "navigationBarTitleText": "添加物料",
  969. // "navigationStyle": "custom",
  970. // "navigationBarTextStyle": "white"
  971. // }
  972. // }, {
  973. // "path": "pages/warehouse/material/regStock",
  974. // "style": {
  975. // "navigationBarTitleText": "直接登记",
  976. // "navigationStyle": "custom",
  977. // "navigationBarTextStyle": "white"
  978. // }
  979. // }, {
  980. // "path": "pages/warehouse/material/regMaterial",
  981. // "style": {
  982. // "navigationBarTitleText": "添加物料",
  983. // "navigationStyle": "custom",
  984. // "navigationBarTextStyle": "white"
  985. // }
  986. // }, {
  987. // "path": "pages/warehouse/material/details",
  988. // "style": {
  989. // "navigationBarTitleText": "详情",
  990. // "navigationStyle": "custom",
  991. // "navigationBarTextStyle": "white"
  992. // }
  993. // }, {
  994. // "path": "pages/warehouse/material/warehousReg",
  995. // "style": {
  996. // "navigationBarTitleText": "登记入库",
  997. // "navigationStyle": "custom",
  998. // "navigationBarTextStyle": "white"
  999. // }
  1000. // }, {
  1001. // "path": "pages/warehouse/material/warehousDetails",
  1002. // "style": {
  1003. // "navigationBarTitleText": "入库明细",
  1004. // "navigationStyle": "custom",
  1005. // "navigationBarTextStyle": "white"
  1006. // }
  1007. // }, {
  1008. // "path": "pages/warehouse/material/warehousDetails",
  1009. // "style": {
  1010. // "navigationBarTitleText": "入库明细",
  1011. // "navigationStyle": "custom",
  1012. // "navigationBarTextStyle": "white"
  1013. // }
  1014. // },
  1015. // //设备入库
  1016. // {
  1017. // "path": "pages/warehouse/equipment/index",
  1018. // "style": {
  1019. // "navigationBarTitleText": "设备入库单",
  1020. // "navigationStyle": "custom",
  1021. // "navigationBarTextStyle": "white"
  1022. // }
  1023. // }, {
  1024. // "path": "pages/warehouse/equipment/addStock",
  1025. // "style": {
  1026. // "navigationBarTitleText": "新增设备入库单",
  1027. // "navigationStyle": "custom",
  1028. // "navigationBarTextStyle": "white"
  1029. // }
  1030. // }, {
  1031. // "path": "pages/warehouse/equipment/addMaterial",
  1032. // "style": {
  1033. // "navigationBarTitleText": "新增设备入库明细",
  1034. // "navigationStyle": "custom",
  1035. // "navigationBarTextStyle": "white"
  1036. // }
  1037. // }, {
  1038. // "path": "pages/warehouse/equipment/regStock",
  1039. // "style": {
  1040. // "navigationBarTitleText": "直接登记",
  1041. // "navigationStyle": "custom",
  1042. // "navigationBarTextStyle": "white"
  1043. // }
  1044. // }, {
  1045. // "path": "pages/warehouse/equipment/regMaterial",
  1046. // "style": {
  1047. // "navigationBarTitleText": "添加物料",
  1048. // "navigationStyle": "custom",
  1049. // "navigationBarTextStyle": "white"
  1050. // }
  1051. // }, {
  1052. // "path": "pages/warehouse/equipment/warehousReg",
  1053. // "style": {
  1054. // "navigationBarTitleText": "直接登记",
  1055. // "navigationStyle": "custom",
  1056. // "navigationBarTextStyle": "white"
  1057. // }
  1058. // }, {
  1059. // "path": "pages/warehouse/equipment/warehousDetails",
  1060. // "style": {
  1061. // "navigationBarTitleText": "添加物料",
  1062. // "navigationStyle": "custom",
  1063. // "navigationBarTextStyle": "white"
  1064. // }
  1065. // }, {
  1066. // "path": "pages/warehouse/equipment/details",
  1067. // "style": {
  1068. // "navigationBarTitleText": "添加物料",
  1069. // "navigationStyle": "custom",
  1070. // "navigationBarTextStyle": "white"
  1071. // }
  1072. // },
  1073. // //设备出库
  1074. // {
  1075. // "path": "pages/warehouse/outbound/index",
  1076. // "style": {
  1077. // "navigationBarTitleText": "设备入库单",
  1078. // "navigationStyle": "custom",
  1079. // "navigationBarTextStyle": "white"
  1080. // }
  1081. // }, {
  1082. // "path": "pages/warehouse/outbound/addStock",
  1083. // "style": {
  1084. // "navigationBarTitleText": "新增设备入库单",
  1085. // "navigationStyle": "custom",
  1086. // "navigationBarTextStyle": "white"
  1087. // }
  1088. // }, {
  1089. // "path": "pages/warehouse/outbound/addMaterial",
  1090. // "style": {
  1091. // "navigationBarTitleText": "新增设备入库明细",
  1092. // "navigationStyle": "custom",
  1093. // "navigationBarTextStyle": "white"
  1094. // }
  1095. // }, {
  1096. // "path": "pages/warehouse/outbound/regStock",
  1097. // "style": {
  1098. // "navigationBarTitleText": "直接登记",
  1099. // "navigationStyle": "custom",
  1100. // "navigationBarTextStyle": "white"
  1101. // }
  1102. // }, {
  1103. // "path": "pages/warehouse/outbound/regMaterial",
  1104. // "style": {
  1105. // "navigationBarTitleText": "添加物料",
  1106. // "navigationStyle": "custom",
  1107. // "navigationBarTextStyle": "white"
  1108. // }
  1109. // }, {
  1110. // "path": "pages/warehouse/outbound/warehousReg",
  1111. // "style": {
  1112. // "navigationBarTitleText": "直接登记",
  1113. // "navigationStyle": "custom",
  1114. // "navigationBarTextStyle": "white"
  1115. // }
  1116. // }, {
  1117. // "path": "pages/warehouse/outbound/warehousDetails",
  1118. // "style": {
  1119. // "navigationBarTitleText": "添加物料",
  1120. // "navigationStyle": "custom",
  1121. // "navigationBarTextStyle": "white"
  1122. // }
  1123. // }, {
  1124. // "path": "pages/warehouse/outbound/details",
  1125. // "style": {
  1126. // "navigationBarTitleText": "添加物料",
  1127. // "navigationStyle": "custom",
  1128. // "navigationBarTextStyle": "white"
  1129. // }
  1130. // },
  1131. //盘点工单
  1132. {
  1133. "path": "pages/warehouse/workOrder/index",
  1134. "style": {
  1135. "navigationBarTitleText": "盘点工单",
  1136. "navigationStyle": "custom",
  1137. "navigationBarTextStyle": "white"
  1138. }
  1139. },
  1140. {
  1141. "path": "pages/warehouse/workOrder/inventory/inventory",
  1142. "style": {
  1143. "navigationBarTitleText": "盘点清单",
  1144. "navigationStyle": "custom",
  1145. "navigationBarTextStyle": "white"
  1146. }
  1147. },
  1148. {
  1149. "path": "pages/warehouse/workOrder/details/details",
  1150. "style": {
  1151. "navigationBarTitleText": "盘点详情",
  1152. "navigationStyle": "custom",
  1153. "navigationBarTextStyle": "white"
  1154. }
  1155. },
  1156. {
  1157. "path": "pages/warehouse/workOrder/manualCheck/manualCheck",
  1158. "style": {
  1159. "navigationBarTitleText": "手动盘点",
  1160. "navigationStyle": "custom",
  1161. "navigationBarTextStyle": "white"
  1162. }
  1163. },
  1164. {
  1165. "path": "pages/warehouse/workOrder/scanCheck/scanCheck",
  1166. "style": {
  1167. "navigationBarTitleText": "扫码盘点",
  1168. "navigationStyle": "custom",
  1169. "navigationBarTextStyle": "white"
  1170. }
  1171. },
  1172. {
  1173. "path": "pages/warehouse/workOrder/registerOverflow/registerOverflow",
  1174. "style": {
  1175. "navigationBarTitleText": "登记溢出物品",
  1176. "navigationStyle": "custom",
  1177. "navigationBarTextStyle": "white"
  1178. }
  1179. },
  1180. //库存调拨
  1181. {
  1182. "path": "pages/warehouse/inventoryAllocation/index",
  1183. "style": {
  1184. "navigationBarTitleText": "库存调拨",
  1185. "navigationStyle": "custom",
  1186. "navigationBarTextStyle": "white"
  1187. }
  1188. },
  1189. {
  1190. "path": "pages/warehouse/inventoryAllocation/edit",
  1191. "style": {
  1192. "navigationBarTitleText": "新建库存调拨",
  1193. "navigationStyle": "custom",
  1194. "navigationBarTextStyle": "white"
  1195. }
  1196. },
  1197. {
  1198. "path": "pages/warehouse/inventoryAllocation/detail",
  1199. "style": {
  1200. "navigationBarTitleText": "库存调拨详情",
  1201. "navigationStyle": "custom",
  1202. "navigationBarTextStyle": "white"
  1203. }
  1204. },
  1205. {
  1206. "path": "pages/warehouse/inventoryAllocation/preview",
  1207. "style": {
  1208. "navigationBarTitleText": "库存调拨预览",
  1209. "navigationStyle": "custom",
  1210. "navigationBarTextStyle": "white"
  1211. }
  1212. },
  1213. {
  1214. "path": "pages/warehouse/inventoryAllocation/scanView",
  1215. "style": {
  1216. "navigationBarTitleText": "扫码结果",
  1217. "navigationStyle": "custom",
  1218. "navigationBarTextStyle": "white"
  1219. }
  1220. },
  1221. //报损报溢
  1222. {
  1223. "path": "pages/warehouse/reportLoss/index",
  1224. "style": {
  1225. "navigationBarTitleText": "报损报溢",
  1226. "navigationStyle": "custom",
  1227. "navigationBarTextStyle": "white"
  1228. }
  1229. },
  1230. {
  1231. "path": "pages/warehouse/reportLoss/edit",
  1232. "style": {
  1233. "navigationBarTitleText": "新增报损报溢",
  1234. "navigationStyle": "custom",
  1235. "navigationBarTextStyle": "white"
  1236. }
  1237. },
  1238. {
  1239. "path": "pages/warehouse/reportLoss/detail",
  1240. "style": {
  1241. "navigationBarTitleText": "报损报溢详情",
  1242. "navigationStyle": "custom",
  1243. "navigationBarTextStyle": "white"
  1244. }
  1245. },
  1246. {
  1247. "path": "pages/warehouse/reportLoss/workorderSelected",
  1248. "style": {
  1249. "navigationBarTitleText": "选择工单",
  1250. "navigationStyle": "custom",
  1251. "navigationBarTextStyle": "white"
  1252. }
  1253. },
  1254. //库存管理
  1255. {
  1256. "path": "pages/warehouse/inventory/index",
  1257. "style": {
  1258. "navigationBarTitleText": "库存查询",
  1259. "navigationStyle": "custom",
  1260. "navigationBarTextStyle": "white"
  1261. }
  1262. },
  1263. {
  1264. "path": "pages/warehouse/inventory/details/details",
  1265. "style": {
  1266. "navigationBarTitleText": "库存详情",
  1267. "navigationStyle": "custom",
  1268. "navigationBarTextStyle": "white"
  1269. }
  1270. },
  1271. {
  1272. "path": "pages/warehouse/inventory/batch/batch",
  1273. "style": {
  1274. "navigationBarTitleText": "批次明细",
  1275. "navigationStyle": "custom",
  1276. "navigationBarTextStyle": "white"
  1277. }
  1278. },
  1279. {
  1280. "path": "pages/warehouse/inventory/order/order",
  1281. "style": {
  1282. "navigationBarTitleText": "单号列表",
  1283. "navigationStyle": "custom",
  1284. "navigationBarTextStyle": "white"
  1285. }
  1286. },
  1287. {
  1288. "path": "pages/warehouse/inventory/order/outInStorageDetail",
  1289. "style": {
  1290. "navigationBarTitleText": "单号列表",
  1291. "navigationStyle": "custom",
  1292. "navigationBarTextStyle": "white"
  1293. }
  1294. },
  1295. {
  1296. "path": "pages/warehouse/picking/index",
  1297. "style": {
  1298. "navigationBarTitleText": "拣货列表",
  1299. "navigationStyle": "custom",
  1300. "navigationBarTextStyle": "white"
  1301. }
  1302. },
  1303. {
  1304. "path": "pages/warehouse/picking/add",
  1305. "style": {
  1306. "navigationBarTitleText": "新增拣货",
  1307. "navigationStyle": "custom",
  1308. "navigationBarTextStyle": "white"
  1309. }
  1310. },
  1311. {
  1312. "path": "pages/warehouse/picking/details",
  1313. "style": {
  1314. "navigationBarTitleText": "拣货详情",
  1315. "navigationStyle": "custom",
  1316. "navigationBarTextStyle": "white"
  1317. }
  1318. },
  1319. {
  1320. "path": "pages/warehouse/components/scanCodeList",
  1321. "style": {
  1322. "navigationBarTitleText": "扫码列表",
  1323. "navigationStyle": "custom",
  1324. "navigationBarTextStyle": "white"
  1325. }
  1326. },
  1327. //---------------------公共页面--------------------
  1328. {
  1329. "path": "pages/common/DocumentSource",
  1330. "style": {
  1331. "navigationBarTitleText": "单据来源",
  1332. "navigationStyle": "custom",
  1333. "navigationBarTextStyle": "white"
  1334. }
  1335. },
  1336. {
  1337. "path": "pages/common/DocumentFile",
  1338. "style": {
  1339. "navigationBarTitleText": "单据附件",
  1340. "navigationStyle": "custom",
  1341. "navigationBarTextStyle": "white"
  1342. }
  1343. },
  1344. {
  1345. "path": "pages/ScanCode/ScanCode",
  1346. "style": {
  1347. "navigationBarTitleText": "报修管理",
  1348. "navigationStyle": "custom",
  1349. "navigationBarTextStyle": "white"
  1350. }
  1351. },
  1352. /* 系统设置 */
  1353. {
  1354. "path": "pages/systemSettings/index",
  1355. "style": {
  1356. "navigationBarTitleText": "系统设置",
  1357. "navigationStyle": "custom",
  1358. "navigationBarTextStyle": "white"
  1359. }
  1360. },
  1361. // 设备台账
  1362. {
  1363. "path": "pages/equipment_ledger/index",
  1364. "style": {
  1365. "navigationStyle": "custom",
  1366. "navigationBarTextStyle": "white"
  1367. }
  1368. },
  1369. {
  1370. "path": "pages/equipment_ledger/basic_info/basic_info",
  1371. "style": {
  1372. "navigationBarTitleText": "基本信息",
  1373. "navigationStyle": "custom",
  1374. "navigationBarTextStyle": "white"
  1375. }
  1376. },
  1377. {
  1378. "path": "pages/equipment_ledger/correlation_model/correlation_model",
  1379. "style": {
  1380. "navigationBarTitleText": "关联模具",
  1381. "navigationStyle": "custom",
  1382. "navigationBarTextStyle": "white"
  1383. }
  1384. },
  1385. {
  1386. "path": "pages/equipment_ledger/patrol_record/patrol_record",
  1387. "style": {
  1388. "navigationBarTitleText": "巡点检记录",
  1389. "navigationStyle": "custom",
  1390. "navigationBarTextStyle": "white"
  1391. }
  1392. },
  1393. {
  1394. "path": "pages/equipment_ledger/malfunction/malfunction",
  1395. "style": {
  1396. "navigationBarTitleText": "故障记录",
  1397. "navigationStyle": "custom",
  1398. "navigationBarTextStyle": "white"
  1399. }
  1400. },
  1401. {
  1402. "path": "pages/equipment_ledger/check/check",
  1403. "style": {
  1404. "navigationBarTitleText": "盘点记录",
  1405. "navigationStyle": "custom",
  1406. "navigationBarTextStyle": "white"
  1407. }
  1408. },
  1409. {
  1410. "path": "pages/equipment_ledger/lot_data/lot_data",
  1411. "style": {
  1412. "navigationBarTitleText": "物联数据",
  1413. "navigationStyle": "custom",
  1414. "navigationBarTextStyle": "white"
  1415. }
  1416. },
  1417. // mes
  1418. {
  1419. "path": "pages/production/report/index",
  1420. "style": {
  1421. "navigationBarTitleText": "生产报工",
  1422. "navigationStyle": "custom",
  1423. "navigationBarTextStyle": "white"
  1424. }
  1425. },
  1426. {
  1427. "path": "pages/production/report/orderMsg",
  1428. "style": {
  1429. "navigationBarTitleText": "订单信息",
  1430. "navigationStyle": "custom",
  1431. "navigationBarTextStyle": "white"
  1432. }
  1433. },
  1434. {
  1435. "path": "pages/production/report/handleReport",
  1436. "style": {
  1437. "navigationBarTitleText": "工序报工",
  1438. "navigationStyle": "custom",
  1439. "navigationBarTextStyle": "white"
  1440. }
  1441. },
  1442. {
  1443. "path": "pages/production/order/index",
  1444. "style": {
  1445. "navigationBarTitleText": "生产工单",
  1446. "navigationStyle": "custom",
  1447. "navigationBarTextStyle": "white"
  1448. }
  1449. },
  1450. {
  1451. "path": "pages/production/order/detail",
  1452. "style": {
  1453. "navigationBarTitleText": " ",
  1454. "navigationStyle": "custom",
  1455. "navigationBarTextStyle": "white"
  1456. }
  1457. },
  1458. {
  1459. "path": "pages/production/order/prepare/preparation",
  1460. "style": {
  1461. "navigationBarTitleText": " ",
  1462. "navigationStyle": "custom",
  1463. "navigationBarTextStyle": "white"
  1464. }
  1465. },
  1466. {
  1467. "path": "pages/production/order/prepare/material",
  1468. "style": {
  1469. "navigationBarTitleText": "领料需求清单",
  1470. "navigationStyle": "custom",
  1471. "navigationBarTextStyle": "white"
  1472. }
  1473. },
  1474. {
  1475. "path": "pages/production/order/prepare/addpick",
  1476. "style": {
  1477. "navigationBarTitleText": "添加领料",
  1478. "navigationStyle": "custom",
  1479. "navigationBarTextStyle": "white"
  1480. }
  1481. },
  1482. {
  1483. "path": "pages/production/order/prepare/comfirm",
  1484. "style": {
  1485. "navigationBarTitleText": "领料清单确认",
  1486. "navigationStyle": "custom",
  1487. "navigationBarTextStyle": "white"
  1488. }
  1489. },
  1490. {
  1491. "path": "pages/production/execute/extrusion/index",
  1492. "style": {
  1493. "navigationBarTitleText": "成型-生产工单",
  1494. "navigationStyle": "custom",
  1495. "navigationBarTextStyle": "white"
  1496. }
  1497. },
  1498. {
  1499. "path": "pages/production/execute/extrusion/detail",
  1500. "style": {
  1501. "navigationBarTitleText": "成型-基本信息",
  1502. "navigationStyle": "custom",
  1503. "navigationBarTextStyle": "white"
  1504. }
  1505. },
  1506. {
  1507. "path": "pages/production/execute/extrusion/report",
  1508. "style": {
  1509. "navigationBarTitleText": "成型-报工",
  1510. "navigationStyle": "custom",
  1511. "navigationBarTextStyle": "white"
  1512. }
  1513. },
  1514. {
  1515. "path": "pages/production/execute/extrusion/preparation",
  1516. "style": {
  1517. "navigationBarTitleText": "成型-准备",
  1518. "navigationStyle": "custom",
  1519. "navigationBarTextStyle": "white"
  1520. }
  1521. },
  1522. {
  1523. "path": "pages/production/execute/drying/index",
  1524. "style": {
  1525. "navigationBarTitleText": "自然干燥-生产工单",
  1526. "navigationStyle": "custom",
  1527. "navigationBarTextStyle": "white"
  1528. }
  1529. },
  1530. {
  1531. "path": "pages/production/execute/drying/picking",
  1532. "style": {
  1533. "navigationBarTitleText": "自然干燥-投料",
  1534. "navigationStyle": "custom",
  1535. "navigationBarTextStyle": "white"
  1536. }
  1537. },
  1538. {
  1539. "path": "pages/production/execute/drying/report",
  1540. "style": {
  1541. "navigationBarTitleText": "自然干燥-报工",
  1542. "navigationStyle": "custom",
  1543. "navigationBarTextStyle": "white"
  1544. }
  1545. },
  1546. {
  1547. "path": "pages/production/execute/heating/index",
  1548. "style": {
  1549. "navigationBarTitleText": "升温干燥-生产工单",
  1550. "navigationStyle": "custom",
  1551. "navigationBarTextStyle": "white"
  1552. }
  1553. },
  1554. {
  1555. "path": "pages/production/execute/heating/detail",
  1556. "style": {
  1557. "navigationBarTitleText": "升温干燥-基本信息",
  1558. "navigationStyle": "custom",
  1559. "navigationBarTextStyle": "white"
  1560. }
  1561. },
  1562. {
  1563. "path": "pages/production/execute/heating/picking",
  1564. "style": {
  1565. "navigationBarTitleText": "升温干燥-投料",
  1566. "navigationStyle": "custom",
  1567. "navigationBarTextStyle": "white"
  1568. }
  1569. },
  1570. {
  1571. "path": "pages/production/execute/heating/report",
  1572. "style": {
  1573. "navigationBarTitleText": "升温干燥-报工",
  1574. "navigationStyle": "custom",
  1575. "navigationBarTextStyle": "white"
  1576. }
  1577. },
  1578. {
  1579. "path": "pages/production/execute/halfAdded/index",
  1580. "style": {
  1581. "navigationBarTitleText": "半加定长-生产工单",
  1582. "navigationStyle": "custom",
  1583. "navigationBarTextStyle": "white"
  1584. }
  1585. },
  1586. {
  1587. "path": "pages/production/execute/halfAdded/detail",
  1588. "style": {
  1589. "navigationBarTitleText": "半加定长-基本信息",
  1590. "navigationStyle": "custom",
  1591. "navigationBarTextStyle": "white"
  1592. }
  1593. },
  1594. {
  1595. "path": "pages/production/execute/halfAdded/report",
  1596. "style": {
  1597. "navigationBarTitleText": "半加定长-报工",
  1598. "navigationStyle": "custom",
  1599. "navigationBarTextStyle": "white"
  1600. }
  1601. },
  1602. {
  1603. "path": "pages/production/execute/halfAdded/picking",
  1604. "style": {
  1605. "navigationBarTitleText": "半加定长-投料",
  1606. "navigationStyle": "custom",
  1607. "navigationBarTextStyle": "white"
  1608. }
  1609. },
  1610. {
  1611. "path": "pages/production/execute/picking/index",
  1612. "style": {
  1613. "navigationBarTitleText": "领料",
  1614. "navigationStyle": "custom",
  1615. "navigationBarTextStyle": "white"
  1616. }
  1617. },
  1618. // =================== PDA =======
  1619. {
  1620. "path": "pages/pda/workOrder/index/index",
  1621. "style": {
  1622. "navigationBarTitleText": "工单列表",
  1623. "navigationStyle": "custom",
  1624. "navigationBarTextStyle": "white"
  1625. }
  1626. },
  1627. {
  1628. "path": "pages/pda/picking/index/index",
  1629. "style": {
  1630. "navigationBarTitleText": "领料",
  1631. "navigationStyle": "custom",
  1632. "navigationBarTextStyle": "white"
  1633. }
  1634. },
  1635. {
  1636. "path": "pages/pda/picking/details",
  1637. "style": {
  1638. "navigationBarTitleText": "领料",
  1639. "navigationStyle": "custom",
  1640. "navigationBarTextStyle": "white"
  1641. }
  1642. },
  1643. {
  1644. "path": "pages/pda/feeding/index/index",
  1645. "style": {
  1646. "navigationBarTitleText": "投料",
  1647. "navigationStyle": "custom",
  1648. "navigationBarTextStyle": "white"
  1649. }
  1650. },
  1651. {
  1652. "path": "pages/pda/feeding/details",
  1653. "style": {
  1654. "navigationStyle": "custom",
  1655. "navigationBarTextStyle": "white"
  1656. }
  1657. },
  1658. {
  1659. "path": "pages/pda/picking/bill/index",
  1660. "style": {
  1661. "navigationBarTitleText": "领料单",
  1662. "navigationStyle": "custom",
  1663. "navigationBarTextStyle": "white"
  1664. }
  1665. },
  1666. {
  1667. "path": "pages/pda/selfBuiltPickOrder/components/addPick",
  1668. "style": {
  1669. "navigationBarTitleText": "自建领料单",
  1670. "navigationStyle": "custom",
  1671. "navigationBarTextStyle": "white"
  1672. }
  1673. },
  1674. {
  1675. "path": "pages/pda/material_return/index/index",
  1676. "style": {
  1677. "navigationBarTitleText": "退料",
  1678. "navigationStyle": "custom",
  1679. "navigationBarTextStyle": "white"
  1680. }
  1681. },
  1682. {
  1683. "path": "pages/pda/nonconforming/index/index",
  1684. "style": {
  1685. "navigationBarTitleText": "不合格品处置",
  1686. "navigationStyle": "custom",
  1687. "navigationBarTextStyle": "white"
  1688. }
  1689. },
  1690. {
  1691. "path": "pages/pda/by_product_recovery/index/index",
  1692. "style": {
  1693. "navigationBarTitleText": "副产品回收",
  1694. "navigationStyle": "custom",
  1695. "navigationBarTextStyle": "white"
  1696. }
  1697. },
  1698. {
  1699. "path": "pages/pda/selfBuiltPickOrder/index/index",
  1700. "style": {
  1701. "navigationBarTitleText": "自建领料单",
  1702. "navigationStyle": "custom",
  1703. "navigationBarTextStyle": "white"
  1704. }
  1705. },
  1706. {
  1707. "path": "pages/pda/work_order_handover/index/index",
  1708. "style": {
  1709. "navigationBarTitleText": "工单交接",
  1710. "navigationStyle": "custom",
  1711. "navigationBarTextStyle": "white"
  1712. }
  1713. },
  1714. {
  1715. "path": "pages/pda/work_order_details/index/index",
  1716. "style": {
  1717. "navigationBarTitleText": "工单详情",
  1718. "navigationStyle": "custom",
  1719. "navigationBarTextStyle": "white"
  1720. }
  1721. },
  1722. {
  1723. "path": "pages/pda/work_order_details/index/index",
  1724. "style": {
  1725. "navigationBarTitleText": "",
  1726. "enablePullDownRefresh": false
  1727. }
  1728. },
  1729. {
  1730. "path": "pages/pda/workOrder/extrusionMolding/index",
  1731. "style": {
  1732. "navigationBarTitleText": "",
  1733. "navigationStyle": "custom",
  1734. "navigationBarTextStyle": "white"
  1735. }
  1736. },
  1737. {
  1738. "path": "pages/pda/workOrder/search/index",
  1739. "style": {
  1740. "navigationBarTitleText": "搜索",
  1741. "navigationStyle": "custom",
  1742. "navigationBarTextStyle": "white"
  1743. }
  1744. },
  1745. {
  1746. "path": "pages/pda/selfBuiltPickOrder/components/choosePickList",
  1747. "style": {
  1748. "navigationBarTitleText": "搜索",
  1749. "navigationStyle": "custom",
  1750. "navigationBarTextStyle": "white"
  1751. }
  1752. },
  1753. {
  1754. "path": "pages/pda/feeding/bill/index",
  1755. "style": {
  1756. "navigationStyle": "custom",
  1757. "navigationBarTextStyle": "white"
  1758. }
  1759. },
  1760. {
  1761. "path": "pages/pda/selfBuiltPickOrder/components/selfBuiltPickOrderDetail",
  1762. "style": {
  1763. "navigationStyle": "custom",
  1764. "navigationBarTextStyle": "white"
  1765. }
  1766. },
  1767. {
  1768. "path": "pages/pda/material_return/components/addMaterialReturn",
  1769. "style": {
  1770. "navigationStyle": "custom",
  1771. "navigationBarTextStyle": "white"
  1772. }
  1773. },
  1774. {
  1775. "path": "pages/pda/material_return/components/choosePickOrder",
  1776. "style": {
  1777. "navigationStyle": "custom",
  1778. "navigationBarTextStyle": "white"
  1779. }
  1780. },
  1781. {
  1782. "path": "pages/pda/feeding/outbound/index",
  1783. "style": {
  1784. "navigationStyle": "custom",
  1785. "navigationBarTextStyle": "white"
  1786. }
  1787. },
  1788. {
  1789. "path": "pages/pda/jobBooking/index/index",
  1790. "style": {
  1791. "navigationStyle": "custom",
  1792. "navigationBarTextStyle": "white"
  1793. }
  1794. },
  1795. {
  1796. "path": "pages/pda/turnover/index/index",
  1797. "style": {
  1798. "navigationStyle": "custom",
  1799. "navigationBarTextStyle": "white"
  1800. }
  1801. },
  1802. {
  1803. "path": "pages/pda/workOrder/index/details",
  1804. "style": {
  1805. "navigationStyle": "custom",
  1806. "navigationBarTextStyle": "white"
  1807. }
  1808. },
  1809. {
  1810. "path": "pages/pda/sample/index/index",
  1811. "style": {
  1812. "navigationStyle": "custom",
  1813. "navigationBarTextStyle": "white"
  1814. }
  1815. },
  1816. {
  1817. "path": "pages/pda/sample/index/jobBooking",
  1818. "style": {
  1819. "navigationStyle": "custom",
  1820. "navigationBarTextStyle": "white"
  1821. }
  1822. },
  1823. {
  1824. "path": "pages/pda/sample/inspection/index",
  1825. "style": {
  1826. "navigationStyle": "custom",
  1827. "navigationBarTextStyle": "white"
  1828. }
  1829. },
  1830. {
  1831. "path": "pages/pda/sample/inspection/job",
  1832. "style": {
  1833. "navigationStyle": "custom",
  1834. "navigationBarTextStyle": "white"
  1835. }
  1836. },
  1837. {
  1838. "path": "pages/pda/warehousing/index",
  1839. "style": {
  1840. "navigationStyle": "custom",
  1841. "navigationBarTextStyle": "white"
  1842. }
  1843. },
  1844. {
  1845. "path": "pages/pda/feeding/single",
  1846. "style": {
  1847. "navigationStyle": "custom",
  1848. "navigationBarTextStyle": "white"
  1849. }
  1850. },
  1851. {
  1852. "path": "pages/pda/outsourcing/index/index",
  1853. "style": {
  1854. "navigationStyle": "custom",
  1855. "navigationBarTextStyle": "white"
  1856. }
  1857. },
  1858. {
  1859. "path": "pages/pda/turnover/index/quality",
  1860. "style": {
  1861. "navigationStyle": "custom",
  1862. "navigationBarTextStyle": "white"
  1863. }
  1864. },
  1865. {
  1866. "path": "pages/pda/outsourcing/components/outsourcingDetail",
  1867. "style": {
  1868. "navigationStyle": "custom",
  1869. "navigationBarTextStyle": "white"
  1870. }
  1871. },
  1872. {
  1873. "path": "pages/invoiceConfirm/index",
  1874. "style": {
  1875. "navigationBarTitleText": "发货确认单",
  1876. "navigationStyle": "custom",
  1877. "navigationBarTextStyle": "white"
  1878. }
  1879. },
  1880. {
  1881. "path": "pages/invoiceConfirm/invoice",
  1882. "style": {
  1883. "navigationBarTitleText": "发货单",
  1884. "navigationStyle": "custom",
  1885. "navigationBarTextStyle": "white"
  1886. }
  1887. },
  1888. {
  1889. "path": "pages/dispatchManage/taskWork/index",
  1890. "style": {
  1891. "navigationBarTitleText": "任务工单",
  1892. "navigationStyle": "custom",
  1893. "navigationBarTextStyle": "white"
  1894. }
  1895. },
  1896. {
  1897. "path": "pages/dispatchManage/taskWork/detail",
  1898. "style": {
  1899. "navigationBarTitleText": "工单详情",
  1900. "navigationStyle": "custom",
  1901. "navigationBarTextStyle": "white"
  1902. }
  1903. },
  1904. {
  1905. "path": "pages/dispatchManage/taskWork/reportDetail",
  1906. "style": {
  1907. "navigationBarTitleText": "报工信息",
  1908. "navigationStyle": "custom",
  1909. "navigationBarTextStyle": "white"
  1910. }
  1911. },
  1912. {
  1913. "path": "pages/internalManagement/apply/index",
  1914. "style": {
  1915. "navigationBarTitleText": "申请",
  1916. "navigationStyle": "custom",
  1917. "navigationBarTextStyle": "white"
  1918. }
  1919. },
  1920. {
  1921. "path": "pages/saleManage/contact/myList",
  1922. "style": {
  1923. "navigationBarTitleText": "我的客户",
  1924. "navigationStyle": "custom",
  1925. "navigationBarTextStyle": "white"
  1926. }
  1927. },
  1928. {
  1929. "path": "pages/saleManage/contact/index",
  1930. "style": {
  1931. "navigationBarTitleText": "公海客户员工",
  1932. "navigationStyle": "custom",
  1933. "navigationBarTextStyle": "white"
  1934. }
  1935. },
  1936. {
  1937. "path": "pages/saleManage/contact/adminIndex",
  1938. "style": {
  1939. "navigationBarTitleText": "公海客户管理员",
  1940. "navigationStyle": "custom",
  1941. "navigationBarTextStyle": "white"
  1942. }
  1943. },
  1944. {
  1945. "path": "pages/saleManage/contact/components/drawer",
  1946. "style": {
  1947. "navigationBarTitleText": "客户详情",
  1948. "navigationStyle": "custom",
  1949. "navigationBarTextStyle": "white"
  1950. }
  1951. },
  1952. {
  1953. "path": "pages/saleManage/contact/add",
  1954. "style": {
  1955. "navigationBarTitleText": "客户新增",
  1956. "navigationStyle": "custom",
  1957. "navigationBarTextStyle": "white"
  1958. }
  1959. },
  1960. {
  1961. "path": "pages/saleManage/contact/components/bankListAdd",
  1962. "style": {
  1963. "navigationBarTitleText": "客户银行新增",
  1964. "navigationStyle": "custom",
  1965. "navigationBarTextStyle": "white"
  1966. }
  1967. },
  1968. {
  1969. "path": "pages/saleManage/contact/components/linkListAdd",
  1970. "style": {
  1971. "navigationBarTitleText": "客户联系人新增",
  1972. "navigationStyle": "custom",
  1973. "navigationBarTextStyle": "white"
  1974. }
  1975. },
  1976. {
  1977. "path": "pages/saleManage/contact/components/followListAdd",
  1978. "style": {
  1979. "navigationBarTitleText": "客户跟进记录新增",
  1980. "navigationStyle": "custom",
  1981. "navigationBarTextStyle": "white"
  1982. }
  1983. },
  1984. {
  1985. "path": "pages/saleManage/businessOpportunity/followList",
  1986. "style": {
  1987. "navigationBarTitleText": "商机跟进记录",
  1988. "navigationStyle": "custom",
  1989. "navigationBarTextStyle": "white"
  1990. }
  1991. },
  1992. {
  1993. "path": "pages/saleManage/contact/followList",
  1994. "style": {
  1995. "navigationBarTitleText": "客户跟进记录",
  1996. "navigationStyle": "custom",
  1997. "navigationBarTextStyle": "white"
  1998. }
  1999. },
  2000. {
  2001. "path": "pages/saleManage/components/selectContact",
  2002. "style": {
  2003. "navigationBarTitleText": "选择客户",
  2004. "navigationStyle": "custom",
  2005. "navigationBarTextStyle": "white"
  2006. }
  2007. },
  2008. {
  2009. "path": "pages/saleManage/components/selectProduce",
  2010. "style": {
  2011. "navigationBarTitleText": "选择产品",
  2012. "navigationStyle": "custom",
  2013. "navigationBarTextStyle": "white"
  2014. }
  2015. },
  2016. {
  2017. "path": "pages/saleManage/businessOpportunity/index",
  2018. "style": {
  2019. "navigationBarTitleText": "商机",
  2020. "navigationStyle": "custom",
  2021. "navigationBarTextStyle": "white"
  2022. }
  2023. }, {
  2024. "path": "pages/saleManage/businessOpportunity/add",
  2025. "style": {
  2026. "navigationBarTitleText": "商机新增",
  2027. "navigationStyle": "custom",
  2028. "navigationBarTextStyle": "white"
  2029. }
  2030. }, {
  2031. "path": "pages/saleManage/businessOpportunity/components/drawer",
  2032. "style": {
  2033. "navigationBarTitleText": "商机详情",
  2034. "navigationStyle": "custom",
  2035. "navigationBarTextStyle": "white"
  2036. }
  2037. },
  2038. {
  2039. "path": "pages/saleManage/saleOrder/index",
  2040. "style": {
  2041. "navigationBarTitleText": "订单",
  2042. "navigationStyle": "custom",
  2043. "navigationBarTextStyle": "white"
  2044. }
  2045. },
  2046. {
  2047. "path": "pages/saleManage/saleOrder/add",
  2048. "style": {
  2049. "navigationBarTitleText": "订单新增",
  2050. "navigationStyle": "custom",
  2051. "navigationBarTextStyle": "white"
  2052. }
  2053. }, {
  2054. "path": "pages/saleManage/saleOrder/components/drawer",
  2055. "style": {
  2056. "navigationBarTitleText": "订单详情",
  2057. "navigationStyle": "custom",
  2058. "navigationBarTextStyle": "white"
  2059. }
  2060. },
  2061. {
  2062. "path": "pages/saleManage/components/selectContract",
  2063. "style": {
  2064. "navigationBarTitleText": "选择合同",
  2065. "navigationStyle": "custom",
  2066. "navigationBarTextStyle": "white"
  2067. }
  2068. },
  2069. {
  2070. "path": "pages/purchasingManage/components/selectContract",
  2071. "style": {
  2072. "navigationBarTitleText": "选择合同",
  2073. "navigationStyle": "custom",
  2074. "navigationBarTextStyle": "white"
  2075. }
  2076. },
  2077. {
  2078. "path": "pages/purchasingManage/components/selectSaleOrder",
  2079. "style": {
  2080. "navigationBarTitleText": "选择订单",
  2081. "navigationStyle": "custom",
  2082. "navigationBarTextStyle": "white"
  2083. }
  2084. },
  2085. {
  2086. "path": "pages/purchasingManage/components/selectProduce",
  2087. "style": {
  2088. "navigationBarTitleText": "选择产品",
  2089. "navigationStyle": "custom",
  2090. "navigationBarTextStyle": "white"
  2091. }
  2092. },
  2093. {
  2094. "path": "pages/purchasingManage/components/selectTaskName",
  2095. "style": {
  2096. "navigationBarTitleText": "选择工序",
  2097. "navigationStyle": "custom",
  2098. "navigationBarTextStyle": "white"
  2099. }
  2100. },
  2101. {
  2102. "path": "pages/purchasingManage/components/selectPBom",
  2103. "style": {
  2104. "navigationBarTitleText": "选择PBom",
  2105. "navigationStyle": "custom",
  2106. "navigationBarTextStyle": "white"
  2107. }
  2108. },
  2109. {
  2110. "path": "pages/saleManage/components/selectUser",
  2111. "style": {
  2112. "navigationBarTitleText": "选择用户",
  2113. "navigationStyle": "custom",
  2114. "navigationBarTextStyle": "white"
  2115. }
  2116. },
  2117. {
  2118. "path": "pages/saleManage/components/selectProject",
  2119. "style": {
  2120. "navigationBarTitleText": "选择项目",
  2121. "navigationStyle": "custom",
  2122. "navigationBarTextStyle": "white"
  2123. }
  2124. },
  2125. {
  2126. "path": "pages/doc/selectDoc",
  2127. "style": {
  2128. "navigationBarTitleText": "关联文档库",
  2129. "navigationStyle": "custom",
  2130. "navigationBarTextStyle": "white"
  2131. }
  2132. },
  2133. {
  2134. "path": "pages/doc/docList",
  2135. "style": {
  2136. "navigationBarTitleText": "文档管理",
  2137. "navigationStyle": "custom",
  2138. "navigationBarTextStyle": "white"
  2139. }
  2140. },
  2141. {
  2142. "path": "pages/doc/browse",
  2143. "style": {
  2144. "navigationBarTitleText": "预览",
  2145. "navigationStyle": "custom",
  2146. "navigationBarTextStyle": "white"
  2147. }
  2148. },
  2149. {
  2150. "path": "pages/salesServiceManagement/demandList/index",
  2151. "style": {
  2152. "navigationBarTitleText": "售后需求",
  2153. "navigationStyle": "custom",
  2154. "navigationBarTextStyle": "white"
  2155. }
  2156. },
  2157. {
  2158. "path": "pages/salesServiceManagement/demandList/add",
  2159. "style": {
  2160. "navigationBarTitleText": "新增需求",
  2161. "navigationStyle": "custom",
  2162. "navigationBarTextStyle": "white"
  2163. }
  2164. },
  2165. {
  2166. "path": "pages/salesServiceManagement/demandList/components/Invoice",
  2167. "style": {
  2168. "navigationBarTitleText": "发货单",
  2169. "navigationStyle": "custom",
  2170. "navigationBarTextStyle": "white"
  2171. }
  2172. },
  2173. {
  2174. "path": "pages/salesServiceManagement/demandList/components/faultAdd",
  2175. "style": {
  2176. "navigationBarTitleText": "故障信息",
  2177. "navigationStyle": "custom",
  2178. "navigationBarTextStyle": "white"
  2179. }
  2180. },
  2181. {
  2182. "path": "pages/salesServiceManagement/demandList/components/contactAdd",
  2183. "style": {
  2184. "navigationBarTitleText": "联系人信息",
  2185. "navigationStyle": "custom",
  2186. "navigationBarTextStyle": "white"
  2187. }
  2188. },
  2189. {
  2190. "path": "pages/salesServiceManagement/demandList/components/submission",
  2191. "style": {
  2192. "navigationBarTitleText": "需求审核",
  2193. "navigationStyle": "custom",
  2194. "navigationBarTextStyle": "white"
  2195. }
  2196. },
  2197. {
  2198. "path": "pages/salesServiceManagement/workOrder/index",
  2199. "style": {
  2200. "navigationBarTitleText": "售后工单",
  2201. "navigationStyle": "custom",
  2202. "navigationBarTextStyle": "white"
  2203. }
  2204. },
  2205. {
  2206. "path": "pages/salesServiceManagement/workOrder/components/editPlan",
  2207. "style": {
  2208. "navigationBarTitleText": "修改工单",
  2209. "navigationStyle": "custom",
  2210. "navigationBarTextStyle": "white"
  2211. }
  2212. },
  2213. {
  2214. "path": "pages/salesServiceManagement/workOrder/components/schemeAdd",
  2215. "style": {
  2216. "navigationBarTitleText": "添加方案",
  2217. "navigationStyle": "custom",
  2218. "navigationBarTextStyle": "white"
  2219. }
  2220. },
  2221. {
  2222. "path": "pages/salesServiceManagement/workOrder/components/selectProduct",
  2223. "style": {
  2224. "navigationBarTitleText": "选择产品",
  2225. "navigationStyle": "custom",
  2226. "navigationBarTextStyle": "white"
  2227. }
  2228. },
  2229. {
  2230. "path": "pages/salesServiceManagement/workOrder/components/accessory",
  2231. "style": {
  2232. "navigationBarTitleText": "配件信息",
  2233. "navigationStyle": "custom",
  2234. "navigationBarTextStyle": "white"
  2235. }
  2236. },
  2237. {
  2238. "path": "pages/salesServiceManagement/workOrder/components/accessoryAdd",
  2239. "style": {
  2240. "navigationBarTitleText": "添加配件",
  2241. "navigationStyle": "custom",
  2242. "navigationBarTextStyle": "white"
  2243. }
  2244. },
  2245. {
  2246. "path": "pages/salesServiceManagement/workOrder/components/forWork/transfer",
  2247. "style": {
  2248. "navigationBarTitleText": "转派",
  2249. "navigationStyle": "custom",
  2250. "navigationBarTextStyle": "white"
  2251. }
  2252. },
  2253. {
  2254. "path": "pages/salesServiceManagement/accessory/index",
  2255. "style": {
  2256. "navigationBarTitleText": "配件申请记录",
  2257. "navigationStyle": "custom",
  2258. "navigationBarTextStyle": "white"
  2259. }
  2260. },
  2261. {
  2262. "path": "pages/salesServiceManagement/recycle/index",
  2263. "style": {
  2264. "navigationBarTitleText": "配件回收记录",
  2265. "navigationStyle": "custom",
  2266. "navigationBarTextStyle": "white"
  2267. }
  2268. },
  2269. {
  2270. "path": "pages/salesServiceManagement/accessory/accessoryAdd",
  2271. "style": {
  2272. "navigationBarTitleText": "配件信息",
  2273. "navigationStyle": "custom",
  2274. "navigationBarTextStyle": "white"
  2275. }
  2276. },
  2277. {
  2278. "path": "pages/salesServiceManagement/accessory/components/selectWork",
  2279. "style": {
  2280. "navigationBarTitleText": "选择工单",
  2281. "navigationStyle": "custom",
  2282. "navigationBarTextStyle": "white"
  2283. }
  2284. },
  2285. {
  2286. "path": "pages/salesServiceManagement/recycle/recycleAdd",
  2287. "style": {
  2288. "navigationBarTitleText": "配件回收新增",
  2289. "navigationStyle": "custom",
  2290. "navigationBarTextStyle": "white"
  2291. }
  2292. },
  2293. {
  2294. "path": "pages/warehouse/outHouse/QRCode",
  2295. "style": {
  2296. "navigationStyle": "custom"
  2297. }
  2298. },
  2299. {
  2300. "path": "pages/traceability/traceabilityCode/index",
  2301. "style": {
  2302. "navigationBarTitleText": "溯源",
  2303. "navigationStyle": "custom",
  2304. "navigationBarTextStyle": "white"
  2305. }
  2306. },
  2307. {
  2308. "path": "pages/traceability/scanCode/index",
  2309. "style": {
  2310. "navigationBarTitleText": "溯源",
  2311. "navigationStyle": "custom",
  2312. "navigationBarTextStyle": "white"
  2313. }
  2314. },
  2315. {
  2316. "path": "pages/traceability/traceabilityCode/purchase",
  2317. "style": {
  2318. "navigationBarTitleText": "采购溯源",
  2319. "navigationStyle": "custom",
  2320. "navigationBarTextStyle": "white"
  2321. }
  2322. },
  2323. {
  2324. "path": "pages/traceability/traceabilityCode/production",
  2325. "style": {
  2326. "navigationBarTitleText": "生产溯源",
  2327. "navigationStyle": "custom",
  2328. "navigationBarTextStyle": "white"
  2329. }
  2330. },
  2331. {
  2332. "path": "pages/traceability/traceabilityCode/quality",
  2333. "style": {
  2334. "navigationBarTitleText": "质检溯源",
  2335. "navigationStyle": "custom",
  2336. "navigationBarTextStyle": "white"
  2337. }
  2338. },
  2339. {
  2340. "path": "pages/traceability/traceabilityCode/company",
  2341. "style": {
  2342. "navigationBarTitleText": "企业信息",
  2343. "navigationStyle": "custom",
  2344. "navigationBarTextStyle": "white"
  2345. }
  2346. },
  2347. {
  2348. "path": "pages/purchasingManage/purchaseNeedManage/index",
  2349. "style": {
  2350. "navigationBarTitleText": "采购需求",
  2351. "navigationStyle": "custom",
  2352. "navigationBarTextStyle": "white"
  2353. }
  2354. },
  2355. {
  2356. "path": "pages/purchasingManage/purchaseNeedManage/components/drawer",
  2357. "style": {
  2358. "navigationBarTitleText": "采购需求详情",
  2359. "navigationStyle": "custom",
  2360. "navigationBarTextStyle": "white"
  2361. }
  2362. },
  2363. {
  2364. "path": "pages/purchasingManage/purchaseNeedManage/add",
  2365. "style": {
  2366. "navigationBarTitleText": "采购需求新增",
  2367. "navigationStyle": "custom",
  2368. "navigationBarTextStyle": "white"
  2369. }
  2370. },
  2371. {
  2372. "path": "pages/qms/inspectionWork/index",
  2373. "style": {
  2374. "navigationBarTitleText": "质检工单",
  2375. "navigationStyle": "custom",
  2376. "navigationBarTextStyle": "white"
  2377. }
  2378. },
  2379. {
  2380. "path": "pages/qms/inspectionWork/inspectionProjectReport",
  2381. "style": {
  2382. "navigationBarTitleText": "质检报工",
  2383. "navigationStyle": "custom",
  2384. "navigationBarTextStyle": "white"
  2385. }
  2386. },
  2387. {
  2388. "path": "pages/qms/inspectionWork/myList",
  2389. "style": {
  2390. "navigationBarTitleText": "我的质检工单",
  2391. "navigationStyle": "custom",
  2392. "navigationBarTextStyle": "white"
  2393. }
  2394. },
  2395. {
  2396. "path": "pages/qms/inspectionWork/myInspectionProjectTask",
  2397. "style": {
  2398. "navigationBarTitleText": "我的质检任务工单",
  2399. "navigationStyle": "custom",
  2400. "navigationBarTextStyle": "white"
  2401. }
  2402. },
  2403. {
  2404. "path": "pages/qms/inspectionWork/myInspectionProjectEntrusted",
  2405. "style": {
  2406. "navigationBarTitleText": "我的质检受托工单",
  2407. "navigationStyle": "custom",
  2408. "navigationBarTextStyle": "white"
  2409. }
  2410. }
  2411. ],
  2412. "tabBar": {
  2413. "color": "#908f8f",
  2414. "selectedColor": "#157a2c",
  2415. "borderStyle": "black",
  2416. "backgroundColor": "#ffffff",
  2417. "fontSize": "14px",
  2418. "list": [{
  2419. "pagePath": "pages/home/home",
  2420. "iconPath": "static/tab/home.png",
  2421. "selectedIconPath": "static/tab/home_.png",
  2422. "text": "首页"
  2423. },
  2424. {
  2425. "pagePath": "pages/index/index",
  2426. "iconPath": "static/tab/waishemianban.png",
  2427. "selectedIconPath": "static/tab/waishemianban_.png",
  2428. "text": "工作"
  2429. },
  2430. {
  2431. "pagePath": "pages/center/center",
  2432. "iconPath": "static/tab/wode-wode.png",
  2433. "selectedIconPath": "static/tab/wode-wode_.png",
  2434. "text": "我的"
  2435. }
  2436. ]
  2437. },
  2438. "globalStyle": {
  2439. "navigationBarTextStyle": "black",
  2440. "navigationBarTitleText": "资产评估",
  2441. "navigationBarBackgroundColor": "#fff",
  2442. "backgroundColor": "#fff"
  2443. },
  2444. "app-plus": {
  2445. "softinputMode": "adjustPan"
  2446. }
  2447. }