pages.json 61 KB

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