pages.json 55 KB

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