pages.json 66 KB

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