pages.json 62 KB

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