index.js 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901
  1. import Layout from '@/page/index/'
  2. export default [{
  3. path: '/wel',
  4. component: Layout,
  5. redirect: '/wel/index',
  6. children: [{
  7. path: 'index',
  8. name: '首页',
  9. meta: {
  10. i18n: 'dashboard',
  11. keepAlive: true,
  12. },
  13. component: () =>
  14. import( /* webpackChunkName: "views" */ '@/views/wel/index')
  15. }, {
  16. path: 'dashboard',
  17. name: '控制台',
  18. meta: {
  19. i18n: 'dashboard',
  20. menu: false,
  21. },
  22. component: () =>
  23. import( /* webpackChunkName: "views" */ '@/views/wel/dashboard')
  24. }]
  25. }, {
  26. path: '/test',
  27. component: Layout,
  28. redirect: '/test/index',
  29. children: [{
  30. path: 'index',
  31. name: '测试页',
  32. meta: {
  33. i18n: 'test'
  34. },
  35. component: () =>
  36. import( /* webpackChunkName: "views" */ '@/views/util/test')
  37. }]
  38. }, {
  39. path: '/dict-horizontal',
  40. component: Layout,
  41. redirect: '/dict-horizontal/index',
  42. children: [{
  43. path: 'index',
  44. name: '字典管理',
  45. meta: {
  46. i18n: 'dict'
  47. },
  48. component: () =>
  49. import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-horizontal')
  50. }]
  51. }, {
  52. path: '/dict-vertical',
  53. component: Layout,
  54. redirect: '/dict-vertical/index',
  55. children: [{
  56. path: 'index',
  57. name: '字典管理',
  58. meta: {
  59. i18n: 'dict'
  60. },
  61. component: () =>
  62. import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-vertical')
  63. }]
  64. }, {
  65. path: '/info',
  66. component: Layout,
  67. redirect: '/info/index',
  68. children: [{
  69. path: 'index',
  70. name: '个人信息',
  71. meta: {
  72. i18n: 'info'
  73. },
  74. component: () => import( /* webpackChunkName: "views" */ '@/views/system/userinfo')
  75. }]
  76. }, {
  77. path: '/basicData/customerInformation/detailsPageEdit',
  78. component: Layout,
  79. hidden: true,
  80. children: [{
  81. path: '/basicData/customerInformation/detailsPageEdit',
  82. meta: {
  83. keepAlive: true,
  84. },
  85. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/detailsPageEdit')
  86. }]
  87. },
  88. {
  89. path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
  90. component: Layout,
  91. hidden: true,
  92. children: [{
  93. path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
  94. meta: {
  95. i18n: 'detailsPageEdit'
  96. },
  97. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/detailsPageEdit')
  98. }]
  99. },
  100. {
  101. path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
  102. component: Layout,
  103. hidden: true,
  104. children: [{
  105. path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
  106. meta: {
  107. i18n: 'detailsPageEdit'
  108. },
  109. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/detailsPageEdit')
  110. }]
  111. },
  112. //商品false
  113. {
  114. path: '/commodityType_detailsPageEdit',
  115. component: Layout,
  116. hidden: true,
  117. children: [{
  118. path: '/commodityType_detailsPageEdit',
  119. meta: {
  120. i18n: 'commodityType_detailsPageEdit'
  121. },
  122. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/detailsPageEdit')
  123. }]
  124. },
  125. //商城管理
  126. //商品列表详情页
  127. {
  128. path: '/productList_detailsPageEdit',
  129. component: Layout,
  130. hidden: true,
  131. children: [{
  132. path: '/productList_detailsPageEdit',
  133. meta: {
  134. i18n: 'productList_detailsPageEdit'
  135. },
  136. component: () => import( /* webpackChunkName: "views" */ '@/views/mallManagement/commodity/productList/detailsPageEdit')
  137. }]
  138. },
  139. //产品
  140. {
  141. path: '/basicData/productInformation/index',
  142. component: Layout,
  143. hidden: true,
  144. children: [{
  145. path: '/basicData/productInformation/index',
  146. name: '产品信息',
  147. meta: {
  148. keepAlive: true,
  149. },
  150. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/productInformation/index')
  151. }]
  152. },
  153. //客户分类
  154. {
  155. path: '/basicData/customerCategory/index',
  156. component: Layout,
  157. hidden: true,
  158. children: [{
  159. path: '/basicData/customerCategory/index',
  160. name: '客户分类',
  161. meta: {
  162. keepAlive: true,
  163. },
  164. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerCategory/index')
  165. }]
  166. },
  167. {
  168. path: '/report/reportlist',
  169. component: Layout,
  170. hidden: true,
  171. children: [{
  172. path: '/report/reportlist',
  173. name: '报表列表',
  174. meta: {
  175. keepAlive: true,
  176. },
  177. component: () =>
  178. import( /* webpackChunkName: "views" */ '@/views/report/reportlist')
  179. }]
  180. },
  181. //客户资料
  182. {
  183. path: '/basicData/customerInformation/index',
  184. component: Layout,
  185. hidden: true,
  186. children: [{
  187. path: '/basicData/customerInformation/index',
  188. name: '客户资料',
  189. meta: {
  190. keepAlive: true,
  191. },
  192. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/index')
  193. }]
  194. }, //车队资料
  195. {
  196. path: '/basicData/fleetInformation/index',
  197. component: Layout,
  198. hidden: true,
  199. children: [{
  200. path: '/basicData/fleetInformation/index',
  201. name: '车队资料',
  202. meta: {
  203. keepAlive: true,
  204. },
  205. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/fleetInformation/index')
  206. }]
  207. },
  208. //供应商分类
  209. {
  210. path: '/basicData/customerManagement/supplierType/index',
  211. component: Layout,
  212. hidden: true,
  213. children: [{
  214. path: '/basicData/customerManagement/supplierType/index',
  215. name: '供应商分类',
  216. meta: {
  217. keepAlive: true,
  218. },
  219. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierType/index')
  220. }]
  221. },
  222. //供应商资料
  223. {
  224. path: '/basicData/customerManagement/supplierMaterial/index',
  225. component: Layout,
  226. hidden: true,
  227. children: [{
  228. path: '/basicData/customerManagement/supplierMaterial/index',
  229. name: '供应商资料',
  230. meta: {
  231. keepAlive: true,
  232. },
  233. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/index')
  234. }]
  235. },
  236. //公司分类
  237. {
  238. path: '/basicData/customerManagement/companyType/index',
  239. component: Layout,
  240. hidden: true,
  241. children: [{
  242. path: '/basicData/customerManagement/companyType/index',
  243. name: '所属公司分类',
  244. meta: {
  245. keepAlive: true,
  246. },
  247. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyType/index')
  248. }]
  249. },
  250. //公司资料
  251. {
  252. path: '/basicData/customerManagement/companyMaterial/index',
  253. component: Layout,
  254. hidden: true,
  255. children: [{
  256. path: '/basicData/customerManagement/companyMaterial/index',
  257. name: '所属公司资料',
  258. meta: {
  259. keepAlive: true,
  260. },
  261. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/index')
  262. }]
  263. },
  264. //商品分类
  265. {
  266. path: '/basicData/commodityCategory/index',
  267. component: Layout,
  268. hidden: true,
  269. children: [{
  270. path: '/basicData/commodityCategory/index',
  271. name: '商品分类',
  272. meta: {
  273. keepAlive: true,
  274. },
  275. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityCategory/index')
  276. }]
  277. },
  278. //商品分类
  279. {
  280. path: '/basicData/commodityType/index',
  281. component: Layout,
  282. hidden: true,
  283. children: [{
  284. path: '/basicData/commodityType/index',
  285. name: '商品信息',
  286. meta: {
  287. keepAlive: true,
  288. },
  289. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/index')
  290. }]
  291. },
  292. //费用分类
  293. {
  294. path: '/basicData/basicFeesType/index',
  295. component: Layout,
  296. hidden: true,
  297. children: [{
  298. path: '/basicData/basicFeesType/index',
  299. name: '费用分类',
  300. meta: {
  301. keepAlive: true,
  302. },
  303. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicFeesType/index')
  304. }]
  305. },
  306. //费用详情
  307. {
  308. path: '/basicData/basicFeesDesc/index',
  309. component: Layout,
  310. hidden: true,
  311. children: [{
  312. path: '/basicData/basicFeesDesc/index',
  313. name: '费用详情',
  314. meta: {
  315. keepAlive: true,
  316. },
  317. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicFeesDesc/index')
  318. }]
  319. },
  320. //仓库分类
  321. {
  322. path: '/basicData/basicStorageType/index',
  323. component: Layout,
  324. hidden: true,
  325. children: [{
  326. path: '/basicData/basicStorageType/index',
  327. name: '仓库分类',
  328. meta: {
  329. keepAlive: true,
  330. },
  331. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicStorageType/index')
  332. }]
  333. },
  334. //库区明细
  335. {
  336. path: '/basicData/basicStorageDesc/index',
  337. component: Layout,
  338. hidden: true,
  339. children: [{
  340. path: '/basicData/basicStorageDesc/index',
  341. name: '库区明细',
  342. meta: {
  343. keepAlive: true,
  344. },
  345. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicStorageDesc/index')
  346. }]
  347. },
  348. //箱分类
  349. {
  350. path: '/basicData/container/type',
  351. component: Layout,
  352. hidden: true,
  353. children: [{
  354. path: '/basicData/container/type',
  355. name: '箱分类',
  356. meta: {
  357. keepAlive: true,
  358. },
  359. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/type')
  360. }]
  361. },
  362. //集装箱
  363. {
  364. path: '/basicData/container/index',
  365. component: Layout,
  366. hidden: true,
  367. children: [{
  368. path: '/basicData/container/index',
  369. name: '集装箱',
  370. meta: {
  371. keepAlive: true,
  372. },
  373. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/index')
  374. }]
  375. },
  376. //港口分类
  377. {
  378. path: '/basicData/portinformation/type',
  379. component: Layout,
  380. hidden: true,
  381. children: [{
  382. path: '/basicData/portinformation/type',
  383. name: '港口分类',
  384. meta: {
  385. keepAlive: true,
  386. },
  387. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/portinformation/type')
  388. }]
  389. },
  390. //港口资料
  391. {
  392. path: '/basicData/portinformation/index',
  393. component: Layout,
  394. hidden: true,
  395. children: [{
  396. path: '/basicData/portinformation/index',
  397. name: '港口资料',
  398. meta: {
  399. keepAlive: true,
  400. },
  401. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/portinformation/index')
  402. }]
  403. },
  404. //汇率管理
  405. {
  406. path: '/basicData/rateManagement/index',
  407. component: Layout,
  408. hidden: true,
  409. children: [{
  410. path: '/basicData/rateManagement/index',
  411. name: '汇率管理',
  412. meta: {
  413. keepAlive: true,
  414. },
  415. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/rateManagement/index')
  416. }]
  417. },
  418. //产品价格
  419. {
  420. path: '/maintenance/priceLibrary/index',
  421. component: Layout,
  422. hidden: true,
  423. children: [{
  424. path: '/maintenance/priceLibrary/index',
  425. name: '产品价格',
  426. meta: {
  427. keepAlive: true,
  428. },
  429. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceLibrary/index')
  430. }]
  431. },
  432. //产品价格
  433. {
  434. path: '/maintenance/landFreight/index',
  435. component: Layout,
  436. hidden: true,
  437. children: [{
  438. path: '/maintenance/landFreight/index',
  439. name: '陆运费',
  440. meta: {
  441. keepAlive: true,
  442. },
  443. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/landFreight/index')
  444. }]
  445. },
  446. //产品价格
  447. {
  448. path: '/maintenance/portSurcharge/index',
  449. component: Layout,
  450. hidden: true,
  451. children: [{
  452. path: '/maintenance/portSurcharge/index',
  453. name: '海运费',
  454. meta: {
  455. keepAlive: true,
  456. },
  457. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/portSurcharge/index')
  458. }]
  459. },
  460. //销售详情页
  461. {
  462. path: '/businessManagement/salesOrder/index',
  463. component: Layout,
  464. hidden: true,
  465. children: [{
  466. path: '/businessManagement/salesOrder/index',
  467. name: '销售订单(N)',
  468. meta: {
  469. i18n: 'businessManagement/salesOrder/index',
  470. keepAlive: true,
  471. },
  472. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/salesOrder/index')
  473. }]
  474. },
  475. {
  476. path: '/businessManagement/proxyOrder/index',
  477. component: Layout,
  478. hidden: true,
  479. children: [{
  480. path: '/businessManagement/proxyOrder/index',
  481. name: '代理订单(N)',
  482. meta: {
  483. keepAlive: true,
  484. },
  485. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/proxyOrder/index')
  486. }]
  487. },
  488. {
  489. path: '/statisticAnalysis/packFeeRecon/index',
  490. component: Layout,
  491. hidden: true,
  492. children: [{
  493. path: '/statisticAnalysis/packFeeRecon/index',
  494. name: '包装费用对账(N)',
  495. meta: {
  496. keepAlive: true,
  497. },
  498. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/packFeeRecon/index')
  499. }]
  500. },
  501. {
  502. path: '/statisticAnalysis/purchaseReconciliation/index',
  503. component: Layout,
  504. hidden: true,
  505. children: [{
  506. path: '/statisticAnalysis/purchaseReconciliation/index',
  507. name: '品牌采购对账(N)',
  508. meta: {
  509. keepAlive: true,
  510. },
  511. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/purchaseReconciliation/index')
  512. }]
  513. },
  514. {
  515. path: '/statisticAnalysis/salesProfitN/index',
  516. component: Layout,
  517. hidden: true,
  518. children: [{
  519. path: '/statisticAnalysis/salesProfitN/index',
  520. name: '销售利润(N)',
  521. meta: {
  522. keepAlive: true,
  523. },
  524. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfitN/index')
  525. }]
  526. },
  527. //发货通知详情页
  528. {
  529. path: '/businessManagement/deliveryNotice/index',
  530. component: Layout,
  531. hidden: true,
  532. children: [{
  533. path: '/businessManagement/deliveryNotice/index',
  534. name: '客户收货(N)',
  535. meta: {
  536. i18n: 'businessManagement/deliveryNotice/index',
  537. keepAlive: true,
  538. },
  539. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/deliveryNotice/index')
  540. }]
  541. },
  542. //价格管理详情页
  543. {
  544. path: '/priceManagement_detailsPageEdit',
  545. component: Layout,
  546. hidden: true,
  547. children: [{
  548. path: '/priceManagement_detailsPageEdit',
  549. meta: {
  550. i18n: 'priceManagement_detailsPageEdit'
  551. },
  552. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/detailsPageEdit')
  553. }]
  554. },
  555. //销售政策详情页
  556. {
  557. path: '/maintenance/salesPolicy/index',
  558. component: Layout,
  559. hidden: true,
  560. children: [{
  561. path: '/maintenance/salesPolicy/index',
  562. name: '销售政策',
  563. meta: {
  564. i18n: 'maintenance/salesPolicy/index',
  565. keepAlive: true
  566. },
  567. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/salesPolicy/index')
  568. }]
  569. },
  570. //陆运委托
  571. {
  572. path: '/landTransportation/placeAnOrder/index',
  573. component: Layout,
  574. hidden: true,
  575. children: [{
  576. path: '/landTransportation/placeAnOrder/index',
  577. name: '委托',
  578. meta: {
  579. i18n: '/landTransportation/placeAnOrder/index',
  580. keepAlive: true,
  581. },
  582. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
  583. }]
  584. },
  585. //秒杀详情页
  586. {
  587. path: '/panicBuyingInformation_detailsPageEdit',
  588. component: Layout,
  589. hidden: true,
  590. children: [{
  591. path: '/panicBuyingInformation_detailsPageEdit',
  592. meta: {
  593. i18n: 'panicBuyingInformation_detailsPageEdit'
  594. },
  595. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/panicBuyingInformation/detailsPageEdit')
  596. }]
  597. },
  598. //上架商品详情页
  599. {
  600. path: '/goodsOnTheShelves_detailsPageEdit',
  601. component: Layout,
  602. hidden: true,
  603. children: [{
  604. path: '/goodsOnTheShelves_detailsPageEdit',
  605. meta: {
  606. i18n: 'goodsOnTheShelves_detailsPageEdit'
  607. },
  608. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/goodsOnTheShelves/detailsPageEdit')
  609. }]
  610. },
  611. //收货单详情页
  612. {
  613. path: '/businessManagement/receipt/index',
  614. component: Layout,
  615. hidden: true,
  616. children: [{
  617. path: '/businessManagement/receipt/index',
  618. name: '工厂发货(N)',
  619. meta: {
  620. keepAlive: true,
  621. },
  622. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/receipt/index')
  623. }]
  624. },
  625. //采购订单详情页
  626. {
  627. path: '/businessManagement/purchaseOrder/index',
  628. component: Layout,
  629. hidden: true,
  630. children: [{
  631. path: '/businessManagement/purchaseOrder/index',
  632. name: '采购订单(N)',
  633. meta: {
  634. i18n: 'businessManagement/purchaseOrder/index',
  635. keepAlive: true,
  636. },
  637. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/purchaseOrder/index')
  638. }]
  639. },
  640. // 采购合同详情页
  641. {
  642. path: '/purchase/contract/index',
  643. component: Layout,
  644. hidden: true,
  645. children: [{
  646. path: '/purchase/contract/index',
  647. name: '采购订单(I)',
  648. meta: {
  649. i18n: '/purchase/contract/index',
  650. keepAlive: true
  651. },
  652. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/contract/index')
  653. }]
  654. },
  655. // 销售合同详情页
  656. {
  657. path: '/salesManagement/salesContract/index',
  658. component: Layout,
  659. hidden: true,
  660. children: [{
  661. path: '/salesManagement/salesContract/index',
  662. name: '销售订单(I)',
  663. meta: {
  664. i18n: '/salesManagement/salesContract/index',
  665. keepAlive: true
  666. },
  667. component: () => import( /* webpackChunkName: "views" */ '@/views/salesManagement/salesContract/index')
  668. }]
  669. },
  670. // 进口 收货单详情页
  671. {
  672. path: '/importTrade/receipt/index',
  673. component: Layout,
  674. hidden: true,
  675. children: [{
  676. path: '/importTrade/receipt/index',
  677. name: '收货单(I)',
  678. meta: {
  679. i18n: '/importTrade/receipt/index',
  680. keepAlive: true
  681. },
  682. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/receipt/index')
  683. }]
  684. },
  685. // 进口 发货单详情页
  686. {
  687. path: '/importTrade/invoice/index',
  688. component: Layout,
  689. hidden: true,
  690. children: [{
  691. path: '/importTrade/invoice/index',
  692. name: '发货单(I)',
  693. meta: {
  694. i18n: 'importTrade/invoice/index',
  695. keepAlive: true
  696. },
  697. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/index')
  698. }]
  699. },
  700. {
  701. path: '/importTrade/receiptSettle/receiptSettle',
  702. component: Layout,
  703. hidden: true,
  704. children: [{
  705. path: '/importTrade/receiptSettle/receiptSettle',
  706. name: '收款合同',
  707. meta: {
  708. keepAlive: true
  709. },
  710. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/receiptSettle/receiptSettle')
  711. }]
  712. },
  713. {
  714. path: '/financialManagement/compareBill/receiptSettle',
  715. component: Layout,
  716. hidden: true,
  717. children: [{
  718. path: '/financialManagement/compareBill/receiptSettle',
  719. name: '对账管理',
  720. meta: {
  721. keepAlive: true
  722. },
  723. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/compareBill/receiptSettle')
  724. }]
  725. },
  726. // 出口 客户询价
  727. {
  728. path: '/exportTrade/customerInquiry/index',
  729. component: Layout,
  730. hidden: true,
  731. children: [{
  732. path: '/exportTrade/customerInquiry/index',
  733. name: '报价(E)',
  734. meta: {
  735. keepAlive: true,
  736. },
  737. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/customerInquiry/index')
  738. }]
  739. },
  740. // 出口 采购询价
  741. {
  742. path: '/exportTrade/purchaseInquiry/index',
  743. component: Layout,
  744. hidden: true,
  745. children: [{
  746. path: '/exportTrade/purchaseInquiry/index',
  747. name: '询价(E)',
  748. meta: {
  749. keepAlive: true,
  750. },
  751. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseInquiry/index')
  752. }]
  753. },
  754. // 出口 船务询价
  755. {
  756. path: '/exportTrade/shippingInquiry/index',
  757. component: Layout,
  758. hidden: true,
  759. children: [{
  760. path: '/exportTrade/shippingInquiry/index',
  761. name: '船务(E)',
  762. meta: {
  763. keepAlive: true,
  764. },
  765. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/shippingInquiry/index')
  766. }]
  767. },
  768. // 出口 销售订单
  769. {
  770. path: '/exportTrade/salesContract/index',
  771. component: Layout,
  772. hidden: true,
  773. children: [{
  774. path: '/exportTrade/salesContract/index',
  775. name: '销售(E)',
  776. meta: {
  777. keepAlive: true,
  778. },
  779. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/salesContract/index')
  780. }]
  781. },
  782. // 出口 采购订单
  783. {
  784. path: '/exportTrade/purchaseContract/index',
  785. component: Layout,
  786. hidden: true,
  787. children: [{
  788. path: '/exportTrade/purchaseContract/index',
  789. name: '采购(E)',
  790. meta: {
  791. keepAlive: true,
  792. },
  793. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseContract/index')
  794. }]
  795. },
  796. // 进口 发货单详情页
  797. {
  798. path: '/importInvoice_detailsPage',
  799. component: Layout,
  800. hidden: true,
  801. children: [{
  802. path: '/importInvoice_detailsPage',
  803. name: '发货单',
  804. meta: {
  805. i18n: 'importInvoice_detailsPage',
  806. keepAlive: true,
  807. },
  808. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/detailsPageEdit')
  809. }]
  810. },
  811. // 出口 收货单
  812. {
  813. path: '/exportTrade/receipt/index',
  814. component: Layout,
  815. hidden: true,
  816. children: [{
  817. path: '/exportTrade/receipt/index',
  818. name: "收货(E)",
  819. meta: {
  820. keepAlive: true,
  821. },
  822. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/receipt/index')
  823. }]
  824. },
  825. // 出口 发货单详情页
  826. {
  827. path: '/exportTrade/invoice/index',
  828. component: Layout,
  829. hidden: true,
  830. children: [{
  831. path: '/exportTrade/invoice/index',
  832. name: "跟单(E)",
  833. meta: {
  834. keepAlive: true,
  835. },
  836. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/invoice/index')
  837. }]
  838. },
  839. // 主营项目
  840. {
  841. path: '/workManagement/main-items/list',
  842. component: Layout,
  843. hidden: true,
  844. children: [{
  845. path: '/workManagement/main-items/list',
  846. name: "主营业务",
  847. meta: {
  848. keepAlive: true,
  849. },
  850. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/main-items/list')
  851. }]
  852. },
  853. // 统计列表
  854. {
  855. path: '/workManagement/receipt/statisticalList',
  856. component: Layout,
  857. hidden: true,
  858. children: [{
  859. path: '/workManagement/receipt/statisticalList',
  860. name: "统计列表",
  861. meta: {
  862. keepAlive: true,
  863. },
  864. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/statisticalList')
  865. }]
  866. },
  867. // 业绩分析
  868. {
  869. path: '/workManagement/performanceAnalysis/index',
  870. component: Layout,
  871. hidden: true,
  872. children: [{
  873. path: '/workManagement/performanceAnalysis/index',
  874. name: "业绩分析",
  875. meta: {
  876. keepAlive: true,
  877. },
  878. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/performanceAnalysis/index')
  879. }]
  880. },
  881. // 结算详情页
  882. {
  883. path: '/workManagement/receipt/settleAccounts',
  884. component: Layout,
  885. hidden: true,
  886. children: [{
  887. path: '/workManagement/receipt/settleAccounts',
  888. name: "结算",
  889. meta: {
  890. keepAlive: true,
  891. },
  892. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/settleAccounts')
  893. }]
  894. },
  895. // 付费申请
  896. {
  897. path: '/financialManagement/paymentRequest/index',
  898. component: Layout,
  899. hidden: true,
  900. children: [{
  901. path: '/financialManagement/paymentRequest/index',
  902. name: "付费申请",
  903. meta: {
  904. i18n: '/financialManagement/paymentRequest/index',
  905. keepAlive: true,
  906. },
  907. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentRequest/index')
  908. }]
  909. },
  910. // 付款结算
  911. {
  912. path: '/financialManagement/paymentSettle/paymentSettle',
  913. component: Layout,
  914. hidden: true,
  915. children: [{
  916. path: '/financialManagement/paymentSettle/paymentSettle',
  917. name: "付款结算",
  918. meta: {
  919. i18n: '/financialManagement/paymentSettle/paymentSettle',
  920. keepAlive: true,
  921. },
  922. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettle/paymentSettle')
  923. }]
  924. },
  925. //收款结算
  926. {
  927. path: '/financialManagement/receiptSettle/receiptSettle',
  928. component: Layout,
  929. hidden: true,
  930. children: [{
  931. path: '/financialManagement/receiptSettle/receiptSettle',
  932. name: "收款结算",
  933. meta: {
  934. i18n: '/financialManagement/receiptSettle/receiptSettle',
  935. keepAlive: true,
  936. },
  937. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/receiptSettle/receiptSettle')
  938. }]
  939. },
  940. // 付款结算(Z)
  941. {
  942. path: '/financialManagement/paymentSettlement/paymentSettle',
  943. component: Layout,
  944. hidden: true,
  945. children: [{
  946. path: '/financialManagement/paymentSettlement/paymentSettle',
  947. name: "付款结算(Z)",
  948. meta: {
  949. i18n: '/financialManagement/paymentSettlement/paymentSettle',
  950. keepAlive: true,
  951. },
  952. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettlement/paymentSettle')
  953. }]
  954. },
  955. //收款结算(Z)
  956. {
  957. path: '/financialManagement/collectionSettlement/receiptSettle',
  958. component: Layout,
  959. hidden: true,
  960. children: [{
  961. path: '/financialManagement/collectionSettlement/receiptSettle',
  962. name: "收款结算(Z)",
  963. meta: {
  964. i18n: '/financialManagement/collectionSettlement/receiptSettle',
  965. keepAlive: true,
  966. },
  967. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/collectionSettlement/receiptSettle')
  968. }]
  969. },
  970. //审批数据
  971. {
  972. path: '/approveData/index',
  973. component: Layout,
  974. hidden: true,
  975. children: [{
  976. path: '/approveData/index',
  977. name: "审批数据",
  978. meta: {
  979. i18n: '/approveData/index',
  980. keepAlive: true,
  981. },
  982. component: () => import( /* webpackChunkName: "views" */ '@/views/approveData/index')
  983. }]
  984. },
  985. // 账单明细
  986. {
  987. path: '/bill_details',
  988. component: Layout,
  989. hidden: true,
  990. children: [{
  991. path: '/financialManagement/billDetails/billDetails',
  992. name: "账单明细",
  993. meta: {
  994. i18n: '/financialManagement/billDetails/billDetails',
  995. keepAlive: true,
  996. },
  997. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/billDetails/billDetails')
  998. }]
  999. },
  1000. //销项发票
  1001. {
  1002. path: '/financialManagement/outputInvoice/outputInvoice',
  1003. component: Layout,
  1004. hidden: true,
  1005. children: [{
  1006. path: '/financialManagement/outputInvoice/outputInvoice',
  1007. name: "销项发票",
  1008. meta: {
  1009. i18n: '/financialManagement/outputInvoice/outputInvoice',
  1010. keepAlive: true,
  1011. },
  1012. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/outputInvoice/outputInvoice')
  1013. }]
  1014. },
  1015. //进项发票
  1016. {
  1017. path: '/financialManagement/incomeInvoice/incomeInvoice',
  1018. component: Layout,
  1019. hidden: true,
  1020. children: [{
  1021. path: '/financialManagement/incomeInvoice/incomeInvoice',
  1022. name: "进项发票",
  1023. meta: {
  1024. i18n: '/financialManagement/incomeInvoice/incomeInvoice',
  1025. keepAlive: true,
  1026. },
  1027. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/incomeInvoice/incomeInvoice')
  1028. }]
  1029. },
  1030. //进口库存账
  1031. {
  1032. path: '/purchase/stockBill/index',
  1033. component: Layout,
  1034. hidden: true,
  1035. children: [{
  1036. path: '/purchase/stockBill/index',
  1037. name: "库存账",
  1038. meta: {
  1039. keepAlive: true,
  1040. },
  1041. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/stockBill/index')
  1042. }]
  1043. },
  1044. {
  1045. path: '/statisticAnalysis/dataDetail/index',
  1046. component: Layout,
  1047. hidden: true,
  1048. children: [{
  1049. path: '/statisticAnalysis/dataDetail/index',
  1050. name: "数据明细(N)",
  1051. meta: {
  1052. i18n: '/statisticAnalysis/dataDetail/index',
  1053. keepAlive: true,
  1054. },
  1055. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  1056. }]
  1057. },
  1058. {
  1059. path: '/statisticAnalysis/dataDetail/index',
  1060. component: Layout,
  1061. hidden: true,
  1062. children: [{
  1063. path: '/statisticAnalysis/dataDetail/index',
  1064. name: "数据明细(N)",
  1065. meta: {
  1066. i18n: '/statisticAnalysis/dataDetail/index',
  1067. keepAlive: true,
  1068. },
  1069. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  1070. }]
  1071. },
  1072. {
  1073. path: '/statisticAnalysis/salesmanCommission/index',
  1074. component: Layout,
  1075. hidden: true,
  1076. children: [{
  1077. path: '/statisticAnalysis/salesmanCommission/index',
  1078. name: "销售人员提成(N)",
  1079. meta: {
  1080. i18n: '/statisticAnalysis/salesmanCommission/index',
  1081. keepAlive: true,
  1082. },
  1083. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanCommission/index')
  1084. }]
  1085. },
  1086. {
  1087. path: '/statisticAnalysis/salesDetails/index',
  1088. component: Layout,
  1089. hidden: true,
  1090. children: [{
  1091. path: '/statisticAnalysis/salesDetails/index',
  1092. name: "销售明细(N)",
  1093. meta: {
  1094. i18n: '/statisticAnalysis/salesDetails/index',
  1095. keepAlive: true,
  1096. },
  1097. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesDetails/index')
  1098. }]
  1099. },
  1100. //利润分析
  1101. {
  1102. path: '/statisticAnalysis/profit/index',
  1103. component: Layout,
  1104. hidden: true,
  1105. children: [{
  1106. path: '/statisticAnalysis/profit/index',
  1107. name: "利润分析",
  1108. meta: {
  1109. i18n: '/statisticAnalysis/profit/index',
  1110. keepAlive: true,
  1111. },
  1112. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profit/index')
  1113. }]
  1114. },
  1115. //销售利润
  1116. {
  1117. path: '/statisticAnalysis/salesProfit/index',
  1118. component: Layout,
  1119. hidden: true,
  1120. children: [{
  1121. path: '/statisticAnalysis/salesProfit/index',
  1122. name: "销售利润",
  1123. meta: {
  1124. keepAlive: true,
  1125. },
  1126. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfit/index')
  1127. }]
  1128. },
  1129. //利润分析
  1130. {
  1131. path: '/statisticAnalysis/royalty/index',
  1132. component: Layout,
  1133. hidden: true,
  1134. children: [{
  1135. path: '/statisticAnalysis/royalty/index',
  1136. name: "提成统计",
  1137. meta: {
  1138. i18n: '/statisticAnalysis/royalty/index',
  1139. keepAlive: true,
  1140. },
  1141. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/royalty/index')
  1142. }]
  1143. },
  1144. // 订单详情
  1145. {
  1146. path: '/orderManagement/orderDetail/index',
  1147. component: Layout,
  1148. hidden: true,
  1149. children: [{
  1150. path: '/orderManagement/orderDetail/index',
  1151. name: "订单详情",
  1152. meta: {
  1153. i18n: '/orderManagement/orderDetail/index',
  1154. keepAlive: true,
  1155. },
  1156. component: () => import( /* webpackChunkName: "views" */ '@/views/orderManagement/orderDetail/index')
  1157. }]
  1158. },
  1159. {
  1160. path: '/work/process/leave',
  1161. component: Layout,
  1162. redirect: '/work/process/leave/form',
  1163. children: [{
  1164. path: 'form/:processDefinitionId',
  1165. name: '请假流程',
  1166. meta: {
  1167. i18n: 'work'
  1168. },
  1169. component: () =>
  1170. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/form')
  1171. }, {
  1172. path: 'handle/:taskId/:processInstanceId/:businessId',
  1173. name: '处理请假流程',
  1174. meta: {
  1175. i18n: 'work'
  1176. },
  1177. component: () =>
  1178. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/handle')
  1179. }, {
  1180. path: 'detail/:processInstanceId/:businessId',
  1181. name: '请假流程详情',
  1182. meta: {
  1183. i18n: 'work'
  1184. },
  1185. component: () =>
  1186. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
  1187. }]
  1188. }, {
  1189. path: '/work/process/test',
  1190. component: Layout,
  1191. redirect: '/work/process/test/form',
  1192. children: [{
  1193. path: 'form/:processDefinitionId',
  1194. name: '请假流程',
  1195. meta: {
  1196. i18n: 'work'
  1197. },
  1198. component: () =>
  1199. import( /* webpackChunkName: "views" */ '@/views/work/process/test/form')
  1200. }, {
  1201. path: 'handle/:taskId/:processInstanceId/:businessId',
  1202. name: '处理请假流程',
  1203. meta: {
  1204. i18n: 'work'
  1205. },
  1206. component: () =>
  1207. import( /* webpackChunkName: "views" */ '@/views/work/process/test/handle')
  1208. }, {
  1209. path: 'detail/:processInstanceId/:businessId',
  1210. name: '请假流程详情',
  1211. meta: {
  1212. i18n: 'work'
  1213. },
  1214. component: () =>
  1215. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
  1216. }]
  1217. },
  1218. {
  1219. path: '/businessManagement/inventoryAccount/detail',
  1220. component: Layout,
  1221. hidden: true,
  1222. children: [{
  1223. path: '/businessManagement/inventoryAccount/detail',
  1224. name: '锁定订单明细',
  1225. meta: {
  1226. keepAlive: true,
  1227. },
  1228. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/detail')
  1229. }]
  1230. },
  1231. {
  1232. path: '/basicData/facultyManagement/index',
  1233. component: Layout,
  1234. hidden: true,
  1235. children: [{
  1236. path: '/basicData/facultyManagement/index',
  1237. name: '教职工管理',
  1238. meta: {
  1239. keepAlive: true,
  1240. },
  1241. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/facultyManagement/index')
  1242. }]
  1243. },
  1244. {
  1245. path: '/basicData/salaryConfiguration/index',
  1246. component: Layout,
  1247. hidden: true,
  1248. children: [{
  1249. path: '/basicData/salaryConfiguration/index',
  1250. name: '学校标准配置',
  1251. meta: {
  1252. keepAlive: true,
  1253. },
  1254. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/salaryConfiguration/index')
  1255. }]
  1256. },
  1257. {
  1258. path: '/salaryManagement/primarySchool/index',
  1259. component: Layout,
  1260. hidden: true,
  1261. children: [{
  1262. path: '/salaryManagement/primarySchool/index',
  1263. name: '小学部',
  1264. meta: {
  1265. keepAlive: true,
  1266. },
  1267. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/primarySchool/index')
  1268. }]
  1269. },
  1270. {
  1271. path: '/salaryManagement/juniorhighSchool/index',
  1272. component: Layout,
  1273. hidden: true,
  1274. children: [{
  1275. path: '/salaryManagement/juniorhighSchool/index',
  1276. name: '初中部',
  1277. meta: {
  1278. keepAlive: true,
  1279. },
  1280. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/juniorhighSchool/index')
  1281. }]
  1282. },
  1283. {
  1284. path: '/salaryManagement/highSchool/index',
  1285. component: Layout,
  1286. hidden: true,
  1287. children: [{
  1288. path: '/salaryManagement/highSchool/index',
  1289. name: '高中部',
  1290. meta: {
  1291. keepAlive: true,
  1292. },
  1293. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/highSchool/index')
  1294. }]
  1295. },
  1296. {
  1297. path: '/salaryManagement/logisticsDepartment/index',
  1298. component: Layout,
  1299. hidden: true,
  1300. children: [{
  1301. path: '/salaryManagement/logisticsDepartment/index',
  1302. name: '后勤部',
  1303. meta: {
  1304. keepAlive: true,
  1305. },
  1306. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/logisticsDepartment/index')
  1307. }]
  1308. },
  1309. {
  1310. path: '/system/businessLock/index',
  1311. component: Layout,
  1312. hidden: true,
  1313. children: [{
  1314. path: '/system/businessLock/index',
  1315. name: '模块加锁',
  1316. meta: {
  1317. keepAlive: true,
  1318. },
  1319. component: () => import( /* webpackChunkName: "views" */ '@/views/system/businessLock/index')
  1320. }]
  1321. },
  1322. {
  1323. path: '/dealer/sales/index',
  1324. component: Layout,
  1325. hidden: true,
  1326. children: [{
  1327. path: '/dealer/sales/index',
  1328. name: '销售订单(D)',
  1329. meta: {
  1330. keepAlive: true,
  1331. },
  1332. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/sales/index')
  1333. }]
  1334. },
  1335. {
  1336. path: '/dealer/purchase/index',
  1337. component: Layout,
  1338. hidden: true,
  1339. children: [{
  1340. path: '/dealer/purchase/index',
  1341. name: '采购订单(D)',
  1342. meta: {
  1343. keepAlive: true,
  1344. },
  1345. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchase/index')
  1346. }]
  1347. },
  1348. //司机
  1349. {
  1350. path: '/basicData/landTransportation/driverInformation/index',
  1351. component: Layout,
  1352. hidden: true,
  1353. children: [{
  1354. path: '/basicData/landTransportation/driverInformation/index',
  1355. name: '司机',
  1356. meta: {
  1357. i18n: '/basicData/landTransportation/driverInformation/index',
  1358. keepAlive: true,
  1359. },
  1360. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/driverInformation/index')
  1361. }]
  1362. },
  1363. //车辆
  1364. {
  1365. path: '/basicData/landTransportation/vehicleInformation/index',
  1366. component: Layout,
  1367. hidden: true,
  1368. children: [{
  1369. path: '/basicData/landTransportation/vehicleInformation/index',
  1370. name: '车辆',
  1371. meta: {
  1372. i18n: '/basicData/landTransportation/driverInformation/index',
  1373. keepAlive: true,
  1374. },
  1375. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/vehicleInformation/index')
  1376. }]
  1377. },
  1378. //陆运委托
  1379. {
  1380. path: '/landTransportation/placeAnOrder/index',
  1381. component: Layout,
  1382. hidden: true,
  1383. children: [{
  1384. path: '/landTransportation/placeAnOrder/index',
  1385. name: '委托',
  1386. meta: {
  1387. i18n: '/landTransportation/placeAnOrder/index',
  1388. keepAlive: true,
  1389. },
  1390. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
  1391. }]
  1392. },
  1393. //调度
  1394. {
  1395. path: '/landTransportation/dispatchingCars/index',
  1396. component: Layout,
  1397. hidden: true,
  1398. children: [{
  1399. path: '/landTransportation/dispatchingCars/index',
  1400. name: '调度',
  1401. meta: {
  1402. i18n: '/landTransportation/dispatchingCars/index',
  1403. keepAlive: true,
  1404. },
  1405. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/dispatchingCars/index')
  1406. }]
  1407. },
  1408. //派车
  1409. {
  1410. path: '/landTransportation/motorcadeDriver/index',
  1411. component: Layout,
  1412. hidden: true,
  1413. children: [{
  1414. path: '/landTransportation/motorcadeDriver/index',
  1415. name: '派车',
  1416. meta: {
  1417. i18n: '/landTransportation/motorcadeDriver/index',
  1418. keepAlive: true,
  1419. },
  1420. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/motorcadeDriver/index')
  1421. }]
  1422. },
  1423. //跟踪
  1424. {
  1425. path: '/landTransportation/driver/index',
  1426. component: Layout,
  1427. hidden: true,
  1428. children: [{
  1429. path: '/landTransportation/driver/index',
  1430. name: '跟踪',
  1431. meta: {
  1432. i18n: '/landTransportation/driver/index',
  1433. keepAlive: true,
  1434. },
  1435. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/driver/index')
  1436. }]
  1437. },
  1438. //散货
  1439. {
  1440. path: '/landTransportation/bulkCargo/index',
  1441. component: Layout,
  1442. hidden: true,
  1443. children: [{
  1444. path: '/landTransportation/bulkCargo/index',
  1445. name: '散货',
  1446. meta: {
  1447. i18n: '/landTransportation/bulkCargo/index',
  1448. keepAlive: true,
  1449. },
  1450. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/bulkCargo/index')
  1451. }]
  1452. },
  1453. //陆运台账
  1454. {
  1455. path: '/landTransportation/reportAnalysis/index',
  1456. component: Layout,
  1457. hidden: true,
  1458. children: [{
  1459. path: '/landTransportation/reportAnalysis/index',
  1460. name: '陆运台账',
  1461. meta: {
  1462. i18n: '/landTransportation/reportAnalysis/index',
  1463. keepAlive: true,
  1464. },
  1465. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/reportAnalysis/index')
  1466. }]
  1467. },
  1468. //散货台账
  1469. {
  1470. path: '/landTransportation/bulkReportAnalysis/index',
  1471. component: Layout,
  1472. hidden: true,
  1473. children: [{
  1474. path: '/landTransportation/bulkReportAnalysis/index',
  1475. name: '散货台账',
  1476. meta: {
  1477. i18n: '/landTransportation/bulkReportAnalysis/index',
  1478. keepAlive: true,
  1479. },
  1480. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/bulkReportAnalysis/index')
  1481. }]
  1482. },
  1483. //运维-价格管理
  1484. {
  1485. path: '/maintenance/priceManagement/index',
  1486. component: Layout,
  1487. hidden: true,
  1488. children: [{
  1489. path: '/maintenance/priceManagement/index',
  1490. name: '价格管理',
  1491. meta: {
  1492. i18n: '/maintenance/priceManagement/index',
  1493. keepAlive: true,
  1494. },
  1495. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/index')
  1496. }]
  1497. },
  1498. //经销商库存账
  1499. {
  1500. path: '/dealer/stock/index',
  1501. component: Layout,
  1502. hidden: true,
  1503. children: [{
  1504. path: '/dealer/stock/index',
  1505. name: '库存账(D)',
  1506. meta: {
  1507. i18n: '/dealer/stock/index',
  1508. keepAlive: true,
  1509. },
  1510. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/index')
  1511. }]
  1512. },
  1513. {
  1514. path: '/dealer/stock/detail',
  1515. component: Layout,
  1516. hidden: true,
  1517. children: [{
  1518. path: '/dealer/stock/detail',
  1519. name: '明细账',
  1520. meta: {
  1521. keepAlive: true,
  1522. },
  1523. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/detail')
  1524. }]
  1525. },
  1526. //内贸库存账
  1527. {
  1528. path: '/businessManagement/inventoryAccount/index',
  1529. component: Layout,
  1530. hidden: true,
  1531. children: [{
  1532. path: '/businessManagement/inventoryAccount/index',
  1533. name: '库存账(N)',
  1534. meta: {
  1535. i18n: '/businessManagement/inventoryAccount/index',
  1536. keepAlive: true,
  1537. },
  1538. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/index')
  1539. }]
  1540. },
  1541. //办公用品-采购申请
  1542. {
  1543. path: '/workManagement/purchaseApply/index',
  1544. component: Layout,
  1545. hidden: true,
  1546. children: [{
  1547. path: '/workManagement/purchaseApply/index',
  1548. name: '采购申请',
  1549. meta: {
  1550. i18n: '/workManagement/purchaseApply/index',
  1551. keepAlive: true,
  1552. },
  1553. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/purchaseApply/index')
  1554. }]
  1555. },
  1556. //办公用品-入库
  1557. {
  1558. path: '/workManagement/warehousing/index',
  1559. component: Layout,
  1560. hidden: true,
  1561. children: [{
  1562. path: '/workManagement/warehousing/index',
  1563. name: '入库',
  1564. meta: {
  1565. i18n: '/workManagement/warehousing/index',
  1566. keepAlive: true,
  1567. },
  1568. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/warehousing/index')
  1569. }]
  1570. },
  1571. //办公用品-领用
  1572. {
  1573. path: '/workManagement/requisition/index',
  1574. component: Layout,
  1575. hidden: true,
  1576. children: [{
  1577. path: '/workManagement/requisition/index',
  1578. name: '领用',
  1579. meta: {
  1580. i18n: '/workManagement/requisition/index',
  1581. keepAlive: true,
  1582. },
  1583. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/requisition/index')
  1584. }]
  1585. },
  1586. //销售机会
  1587. {
  1588. path: '/saleLeads/index',
  1589. component: Layout,
  1590. hidden: true,
  1591. children: [{
  1592. path: '/saleLeads/index',
  1593. name: '销售机会',
  1594. meta: {
  1595. i18n: '/saleLeads/index',
  1596. keepAlive: true,
  1597. },
  1598. component: () => import( /* webpackChunkName: "views" */ '@/views/saleLeads/index')
  1599. }]
  1600. },
  1601. //办公用品库存账
  1602. {
  1603. path: '/workManagement/stock/index',
  1604. component: Layout,
  1605. hidden: true,
  1606. children: [{
  1607. path: '/workManagement/stock/index',
  1608. name: '库存账(O)',
  1609. meta: {
  1610. i18n: '/workManagement/stock/index',
  1611. keepAlive: true,
  1612. },
  1613. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/stock/index')
  1614. }]
  1615. },
  1616. //报销
  1617. {
  1618. path: '/reimbursement/index',
  1619. component: Layout,
  1620. hidden: true,
  1621. children: [{
  1622. path: '/reimbursement/index',
  1623. name: '报销',
  1624. meta: {
  1625. i18n: '/reimbursement/index',
  1626. keepAlive: true,
  1627. },
  1628. component: () => import( /* webpackChunkName: "views" */ '@/views/reimbursement/index')
  1629. }]
  1630. },
  1631. //交接单
  1632. {
  1633. path: '/workManagement/handoverSheet/index',
  1634. component: Layout,
  1635. hidden: true,
  1636. children: [{
  1637. path: '/workManagement/handoverSheet/index',
  1638. name: '交接单',
  1639. meta: {
  1640. i18n: '/workManagement/handoverSheet/index',
  1641. keepAlive: true,
  1642. },
  1643. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/handoverSheet/index')
  1644. }]
  1645. },
  1646. //经销商产品调拨
  1647. {
  1648. path: '/dealer/allocation/index',
  1649. component: Layout,
  1650. hidden: true,
  1651. children: [{
  1652. path: '/dealer/allocation/index',
  1653. name: '产品调拨',
  1654. meta: {
  1655. i18n: '/dealer/allocation/index',
  1656. keepAlive: true,
  1657. },
  1658. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/allocation/index')
  1659. }]
  1660. },
  1661. //数据明细(N)
  1662. {
  1663. path: '/statisticAnalysis/dataDetail/index',
  1664. component: Layout,
  1665. hidden: true,
  1666. children: [{
  1667. path: '/statisticAnalysis/dataDetail/index',
  1668. name: '数据明细(N)',
  1669. meta: {
  1670. i18n: '/statisticAnalysis/dataDetail/index',
  1671. keepAlive: true,
  1672. },
  1673. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  1674. }]
  1675. },
  1676. //销售对账
  1677. {
  1678. path: '/statisticAnalysis/salesReconciliation/index',
  1679. component: Layout,
  1680. hidden: true,
  1681. children: [{
  1682. path: '/statisticAnalysis/salesReconciliation/index',
  1683. name: '销售对账',
  1684. meta: {
  1685. i18n: '/statisticAnalysis/salesReconciliation/index',
  1686. keepAlive: true,
  1687. },
  1688. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliation/index')
  1689. }]
  1690. },
  1691. //销售对账详情
  1692. {
  1693. path: '/statisticAnalysis/salesReconciliationDetails/index',
  1694. component: Layout,
  1695. hidden: true,
  1696. children: [{
  1697. path: '/statisticAnalysis/salesReconciliationDetails/index',
  1698. name: '销售对账详情',
  1699. meta: {
  1700. i18n: '/statisticAnalysis/salesReconciliationDetails/index',
  1701. keepAlive: true,
  1702. },
  1703. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliationDetails/index')
  1704. }]
  1705. },
  1706. //应收总账
  1707. {
  1708. path: '/statisticAnalysis/collectLedger/index',
  1709. component: Layout,
  1710. hidden: true,
  1711. children: [{
  1712. path: '/statisticAnalysis/collectLedger/index',
  1713. name: '应收总账',
  1714. meta: {
  1715. i18n: '/statisticAnalysis/collectLedger/index',
  1716. keepAlive: true,
  1717. },
  1718. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/collectLedger/index')
  1719. }]
  1720. },
  1721. //应付总账
  1722. {
  1723. path: '/statisticAnalysis/paymentLedger/index',
  1724. component: Layout,
  1725. hidden: true,
  1726. children: [{
  1727. path: '/statisticAnalysis/paymentLedger/index',
  1728. name: '应付总账',
  1729. meta: {
  1730. i18n: '/statisticAnalysis/paymentLedger/index',
  1731. keepAlive: true,
  1732. },
  1733. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/paymentLedger/index')
  1734. }]
  1735. },
  1736. //利润总账
  1737. {
  1738. path: '/statisticAnalysis/profitLedger/index',
  1739. component: Layout,
  1740. hidden: true,
  1741. children: [{
  1742. path: '/statisticAnalysis/profitLedger/index',
  1743. name: '利润总账',
  1744. meta: {
  1745. i18n: '/statisticAnalysis/profitLedger/index',
  1746. keepAlive: true,
  1747. },
  1748. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitLedger/index')
  1749. }]
  1750. },
  1751. //采购合同(D)
  1752. {
  1753. path: '/dealer/purchaseContract/index',
  1754. component: Layout,
  1755. hidden: true,
  1756. children: [{
  1757. path: '/dealer/purchaseContract/index',
  1758. name: '采购合同(D)',
  1759. meta: {
  1760. i18n: '/dealer/purchaseContract/index',
  1761. keepAlive: true,
  1762. },
  1763. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchaseContract/index')
  1764. }]
  1765. },
  1766. {
  1767. path: '/warehousing/inStock/index',
  1768. component: Layout,
  1769. hidden: true,
  1770. children: [{
  1771. path: '/warehousing/inStock/index',
  1772. name: '入库',
  1773. meta: {
  1774. i18n: '/warehousing/inStock/index',
  1775. keepAlive: true,
  1776. },
  1777. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/inStock/index')
  1778. }]
  1779. },
  1780. {
  1781. path: '/warehousing/outStock/index',
  1782. component: Layout,
  1783. hidden: true,
  1784. children: [{
  1785. path: '/warehousing/outStock/index',
  1786. name: '出库',
  1787. meta: {
  1788. i18n: '/warehousing/outStock/index',
  1789. keepAlive: true,
  1790. },
  1791. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/outStock/index')
  1792. }]
  1793. },
  1794. {
  1795. path: '/warehousing/stockTransfer/index',
  1796. component: Layout,
  1797. hidden: true,
  1798. children: [{
  1799. path: '/warehousing/stockTransfer/index',
  1800. name: '调拨',
  1801. meta: {
  1802. i18n: '/warehousing/stockTransfer/index',
  1803. keepAlive: true,
  1804. },
  1805. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/stockTransfer/index')
  1806. }]
  1807. },
  1808. {
  1809. path: '/warehousing/goodsTransfer/index',
  1810. component: Layout,
  1811. hidden: true,
  1812. children: [{
  1813. path: '/warehousing/goodsTransfer/index',
  1814. name: '货转',
  1815. meta: {
  1816. i18n: '/warehousing/goodsTransfer/index',
  1817. keepAlive: true,
  1818. },
  1819. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/goodsTransfer/index')
  1820. }]
  1821. },
  1822. {
  1823. path: '/statisticAnalysis/taskStatistics/index',
  1824. component: Layout,
  1825. hidden: true,
  1826. children: [{
  1827. path: '/statisticAnalysis/taskStatistics/index',
  1828. name: '任务统计',
  1829. meta: {
  1830. i18n: '/statisticAnalysis/taskStatistics/index',
  1831. keepAlive: true,
  1832. },
  1833. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/taskStatistics/index')
  1834. }]
  1835. },
  1836. {
  1837. path: '/statisticAnalysis/commissionStatistics/index',
  1838. component: Layout,
  1839. hidden: true,
  1840. children: [{
  1841. path: '/statisticAnalysis/commissionStatistics/index',
  1842. name: '提成统计(S)',
  1843. meta: {
  1844. i18n: '/statisticAnalysis/commissionStatistics/index',
  1845. keepAlive: true,
  1846. },
  1847. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/commissionStatistics/index')
  1848. }]
  1849. }, {
  1850. path: '/purchasingManagement/inStock/index',
  1851. component: Layout,
  1852. hidden: true,
  1853. children: [{
  1854. path: '/purchasingManagement/inStock/index',
  1855. name: '入库管理',
  1856. meta: {
  1857. i18n: '/purchasingManagement/inStock/index',
  1858. keepAlive: true,
  1859. },
  1860. component: () => import( /* webpackChunkName: "views" */ '@/views/purchasingManagement/inStock/index')
  1861. }]
  1862. }, {
  1863. path: '/basicData/agreement/index',
  1864. component: Layout,
  1865. hidden: true,
  1866. children: [{
  1867. path: '/basicData/agreement/index',
  1868. name: '仓储费协议',
  1869. meta: {
  1870. i18n: '/basicData/agreement/index',
  1871. keepAlive: true,
  1872. },
  1873. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/agreement/index')
  1874. }]
  1875. }, {
  1876. path: '/financing/financingManagement/index',
  1877. component: Layout,
  1878. hidden: true,
  1879. children: [{
  1880. path: '/financing/financingManagement/index',
  1881. name: '融资管理',
  1882. meta: {
  1883. i18n: '/financing/financingManagement/index',
  1884. keepAlive: true,
  1885. },
  1886. component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingManagement/index')
  1887. }]
  1888. }, {
  1889. path: '/financing/financingLedger/index',
  1890. component: Layout,
  1891. hidden: true,
  1892. children: [{
  1893. path: '/financing/financingLedger/index',
  1894. name: '融资总账',
  1895. meta: {
  1896. i18n: '/financing/financingLedger/index',
  1897. keepAlive: true,
  1898. },
  1899. component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingLedger/index')
  1900. }]
  1901. }, {
  1902. path: '/financing/financingLedger/detail',
  1903. component: Layout,
  1904. hidden: true,
  1905. children: [{
  1906. path: '/financing/financingLedger/detail',
  1907. name: '融资总账明细',
  1908. meta: {
  1909. i18n: '/financing/financingLedger/detail',
  1910. keepAlive: true,
  1911. },
  1912. component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingLedger/detail')
  1913. }]
  1914. }, {
  1915. path: '/InventoryManagement/inventoryAccount/index',
  1916. component: Layout,
  1917. hidden: true,
  1918. children: [{
  1919. path: '/InventoryManagement/inventoryAccount/index',
  1920. name: '库存帐',
  1921. meta: {
  1922. i18n: '/InventoryManagement/inventoryAccount/index',
  1923. keepAlive: true,
  1924. },
  1925. component: () => import( /* webpackChunkName: "views" */ '@/views/InventoryManagement/inventoryAccount/index')
  1926. }]
  1927. }, {
  1928. path: '/salesManagement/outStock/index',
  1929. component: Layout,
  1930. hidden: true,
  1931. children: [{
  1932. path: '/salesManagement/outStock/index',
  1933. name: '出库管理',
  1934. meta: {
  1935. i18n: '/salesManagement/outStock/index',
  1936. keepAlive: true,
  1937. },
  1938. component: () => import( /* webpackChunkName: "views" */ '@/views/salesManagement/outStock/index')
  1939. }]
  1940. }, {
  1941. path: '/client/index',
  1942. component: Layout,
  1943. hidden: true,
  1944. children: [{
  1945. path: '/client/index',
  1946. name: '客户(Y)',
  1947. meta: {
  1948. i18n: '/client/index',
  1949. keepAlive: true,
  1950. },
  1951. component: () => import( /* webpackChunkName: "views" */ '@/views/client/index')
  1952. }]
  1953. }, {
  1954. path: '/client/index',
  1955. component: Layout,
  1956. hidden: true,
  1957. children: [{
  1958. path: '/client/index',
  1959. name: '客户(Y)',
  1960. meta: {
  1961. i18n: '/client/index',
  1962. keepAlive: true,
  1963. },
  1964. component: () => import( /* webpackChunkName: "views" */ '@/views/client/index')
  1965. }]
  1966. }, {
  1967. path: '/salesOrder/index',
  1968. component: Layout,
  1969. hidden: true,
  1970. children: [{
  1971. path: '/salesOrder/index',
  1972. name: '销售单',
  1973. meta: {
  1974. i18n: '/salesOrder/index',
  1975. keepAlive: true,
  1976. },
  1977. component: () => import( /* webpackChunkName: "views" */ '@/views/salesOrder/index')
  1978. }]
  1979. }, {
  1980. path: '/salesOrderTwo/index',
  1981. component: Layout,
  1982. hidden: true,
  1983. children: [{
  1984. path: '/salesOrderTwo/index',
  1985. name: '销售计划单',
  1986. meta: {
  1987. i18n: '/salesOrderTwo/index',
  1988. keepAlive: true,
  1989. },
  1990. component: () => import( /* webpackChunkName: "views" */ '@/views/salesOrderTwo/index')
  1991. }]
  1992. }, {
  1993. path: '/purchaseOrder/index',
  1994. component: Layout,
  1995. hidden: true,
  1996. children: [{
  1997. path: '/purchaseOrder/index',
  1998. name: '采购单',
  1999. meta: {
  2000. i18n: '/purchaseOrder/index',
  2001. keepAlive: true,
  2002. },
  2003. component: () => import( /* webpackChunkName: "views" */ '@/views/purchaseOrder/index')
  2004. }]
  2005. }, {
  2006. path: '/product/index',
  2007. component: Layout,
  2008. hidden: true,
  2009. children: [{
  2010. path: '/product/index',
  2011. name: '产品',
  2012. meta: {
  2013. i18n: '/product/index',
  2014. keepAlive: true,
  2015. },
  2016. component: () => import( /* webpackChunkName: "views" */ '@/views/product/index')
  2017. }]
  2018. }, {
  2019. path: '/tirePartsMall/inventory/index',
  2020. component: Layout,
  2021. hidden: true,
  2022. children: [{
  2023. path: '/tirePartsMall/inventory/index',
  2024. name: '库存查询',
  2025. meta: {
  2026. i18n: '/tirePartsMall/inventory/index',
  2027. keepAlive: true,
  2028. },
  2029. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/inventory/index')
  2030. }]
  2031. }, {
  2032. path: '/tirePartsMall/inventory/detail',
  2033. component: Layout,
  2034. hidden: true,
  2035. children: [{
  2036. path: '/tirePartsMall/inventory/detail',
  2037. name: '库存账明细',
  2038. meta: {
  2039. keepAlive: true,
  2040. },
  2041. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/inventory/detail')
  2042. }]
  2043. },{
  2044. path: '/statisticAnalysis/AmtAmount/index',
  2045. component: Layout,
  2046. hidden: true,
  2047. children: [{
  2048. path: '/statisticAnalysis/AmtAmount/index',
  2049. name: '数量金额汇总',
  2050. meta: {
  2051. i18n: '/statisticAnalysis/AmtAmount/index',
  2052. keepAlive: true,
  2053. },
  2054. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/AmtAmount/index')
  2055. }]
  2056. }, {
  2057. path: '/statisticAnalysis/customerDelivery/index',
  2058. component: Layout,
  2059. hidden: true,
  2060. children: [{
  2061. path: '/statisticAnalysis/customerDelivery/index',
  2062. name: '发货客户统计',
  2063. meta: {
  2064. i18n: '/statisticAnalysis/customerDelivery/index',
  2065. keepAlive: true,
  2066. },
  2067. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/customerDelivery/index')
  2068. }]
  2069. }, {
  2070. path: '/statisticAnalysis/salesmanDelivery/index',
  2071. component: Layout,
  2072. hidden: true,
  2073. children: [{
  2074. path: '/statisticAnalysis/salesmanDelivery/index',
  2075. name: '发货业务员统计',
  2076. meta: {
  2077. i18n: '/statisticAnalysis/salesmanDelivery/index',
  2078. keepAlive: true,
  2079. },
  2080. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanDelivery/index')
  2081. }]
  2082. }, {
  2083. path: '/statisticAnalysis/specificationsDelivery/index',
  2084. component: Layout,
  2085. hidden: true,
  2086. children: [{
  2087. path: '/statisticAnalysis/specificationsDelivery/index',
  2088. name: '发货规格统计',
  2089. meta: {
  2090. i18n: '/statisticAnalysis/specificationsDelivery/index',
  2091. keepAlive: true,
  2092. },
  2093. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/specificationsDelivery/index')
  2094. }]
  2095. }, {
  2096. path: '/statisticAnalysis/customerProfit/index',
  2097. component: Layout,
  2098. hidden: true,
  2099. children: [{
  2100. path: '/statisticAnalysis/customerProfit/index',
  2101. name: '客户利润统计',
  2102. meta: {
  2103. i18n: '/statisticAnalysis/customerProfit/index',
  2104. keepAlive: true,
  2105. },
  2106. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/customerProfit/index')
  2107. }]
  2108. }, {
  2109. path: '/statisticAnalysis/salesmanProfit/index',
  2110. component: Layout,
  2111. hidden: true,
  2112. children: [{
  2113. path: '/statisticAnalysis/salesmanProfit/index',
  2114. name: '业务员利润统计',
  2115. meta: {
  2116. i18n: '/statisticAnalysis/salesmanProfit/index',
  2117. keepAlive: true,
  2118. },
  2119. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanProfit/index')
  2120. }]
  2121. }, {
  2122. path: '/statisticAnalysis/brandProfit/index',
  2123. component: Layout,
  2124. hidden: true,
  2125. children: [{
  2126. path: '/statisticAnalysis/brandProfit/index',
  2127. name: '品牌利润对比统计',
  2128. meta: {
  2129. i18n: '/statisticAnalysis/brandProfit/index',
  2130. keepAlive: true,
  2131. },
  2132. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/brandProfit/index')
  2133. }]
  2134. }, {
  2135. path: '/supplier/index',
  2136. component: Layout,
  2137. hidden: true,
  2138. children: [{
  2139. path: '/supplier/index',
  2140. name: '供应商(Y)',
  2141. meta: {
  2142. i18n: '/supplier/index',
  2143. keepAlive: true,
  2144. },
  2145. component: () => import( /* webpackChunkName: "views" */ '@/views/supplier/index')
  2146. }]
  2147. }, {
  2148. path: '/basicData/container/archives',
  2149. component: Layout,
  2150. hidden: true,
  2151. children: [{
  2152. path: '/basicData/container/archives',
  2153. name: '箱档案',
  2154. meta: {
  2155. i18n: '/basicData/container/archives',
  2156. keepAlive: true,
  2157. },
  2158. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/archives')
  2159. }]
  2160. }, {
  2161. path: '/boxManagement/buyContainer/index',
  2162. component: Layout,
  2163. hidden: true,
  2164. children: [{
  2165. path: '/boxManagement/buyContainer/index',
  2166. name: '买箱',
  2167. meta: {
  2168. i18n: '/boxManagement/buyContainer/index',
  2169. keepAlive: true,
  2170. },
  2171. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/buyContainer/index')
  2172. }]
  2173. }, {
  2174. path: '/boxManagement/sellingContainers/index',
  2175. component: Layout,
  2176. hidden: true,
  2177. children: [{
  2178. path: '/boxManagement/sellingContainers/index',
  2179. name: '卖箱',
  2180. meta: {
  2181. i18n: '/boxManagement/sellingContainers/index',
  2182. keepAlive: true,
  2183. },
  2184. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/sellingContainers/index')
  2185. }]
  2186. }, {
  2187. path: '/boxManagement/exportShipment/index',
  2188. component: Layout,
  2189. hidden: true,
  2190. children: [{
  2191. path: '/boxManagement/exportShipment/index',
  2192. name: '出口装运',
  2193. meta: {
  2194. i18n: '/boxManagement/exportShipment/index',
  2195. keepAlive: true,
  2196. },
  2197. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/exportShipment/index')
  2198. }]
  2199. }, {
  2200. path: '/boxManagement/importReturnTrip/index',
  2201. component: Layout,
  2202. hidden: true,
  2203. children: [{
  2204. path: '/boxManagement/importReturnTrip/index',
  2205. name: '进口返程',
  2206. meta: {
  2207. i18n: '/boxManagement/importReturnTrip/index',
  2208. keepAlive: true,
  2209. },
  2210. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/importReturnTrip/index')
  2211. }]
  2212. }, {
  2213. path: '/boxManagement/boxRepair/index',
  2214. component: Layout,
  2215. hidden: true,
  2216. children: [{
  2217. path: '/boxManagement/boxRepair/index',
  2218. name: '修箱',
  2219. meta: {
  2220. i18n: '/boxManagement/boxRepair/index',
  2221. keepAlive: true,
  2222. },
  2223. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxRepair/index')
  2224. }]
  2225. }, {
  2226. path: '/boxManagement/boxWashing/index',
  2227. component: Layout,
  2228. hidden: true,
  2229. children: [{
  2230. path: '/boxManagement/boxWashing/index',
  2231. name: '洗箱',
  2232. meta: {
  2233. i18n: '/boxManagement/boxWashing/index',
  2234. keepAlive: true,
  2235. },
  2236. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxWashing/index')
  2237. }]
  2238. }, {
  2239. path: '/boxManagement/leaseIn/index',
  2240. component: Layout,
  2241. hidden: true,
  2242. children: [{
  2243. path: '/boxManagement/leaseIn/index',
  2244. name: '租入',
  2245. meta: {
  2246. i18n: '/boxManagement/leaseIn/index',
  2247. keepAlive: true,
  2248. },
  2249. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/leaseIn/index')
  2250. }]
  2251. }, {
  2252. path: '/boxManagement/leaseOut/index',
  2253. component: Layout,
  2254. hidden: true,
  2255. children: [{
  2256. path: '/boxManagement/leaseOut/index',
  2257. name: '租出',
  2258. meta: {
  2259. i18n: '/boxManagement/leaseOut/index',
  2260. keepAlive: true,
  2261. },
  2262. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/leaseOut/index')
  2263. }]
  2264. }, {
  2265. path: '/purchase/importDeclaration/index',
  2266. component: Layout,
  2267. hidden: true,
  2268. children: [{
  2269. path: '/purchase/importDeclaration/index',
  2270. name: '进口报关',
  2271. meta: {
  2272. i18n: '/purchase/importDeclaration/index',
  2273. keepAlive: true,
  2274. },
  2275. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/importDeclaration/index')
  2276. }]
  2277. }, {
  2278. path: '/purchase/exportDeclaration/index',
  2279. component: Layout,
  2280. hidden: true,
  2281. children: [{
  2282. path: '/purchase/exportDeclaration/index',
  2283. name: '出口报关',
  2284. meta: {
  2285. i18n: '/purchase/exportDeclaration/index',
  2286. keepAlive: true,
  2287. },
  2288. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/exportDeclaration/index')
  2289. }]
  2290. }, {
  2291. path: '/boxManagement/boxTrack/index',
  2292. component: Layout,
  2293. hidden: true,
  2294. children: [{
  2295. path: '/boxManagement/boxTrack/index',
  2296. name: '箱轨迹',
  2297. meta: {
  2298. i18n: '/boxManagement/boxTrack/index',
  2299. keepAlive: true,
  2300. },
  2301. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxTrack/index')
  2302. }]
  2303. }, {
  2304. path: '/boxManagement/stockpilingManage/index',
  2305. component: Layout,
  2306. hidden: true,
  2307. children: [{
  2308. path: '/boxManagement/stockpilingManage/index',
  2309. name: '堆存管理',
  2310. meta: {
  2311. i18n: '/boxManagement/stockpilingManage/index',
  2312. keepAlive: true,
  2313. },
  2314. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/stockpilingManage/index')
  2315. }]
  2316. }, {
  2317. path: '/statisticAnalysis/profitStatistics/index',
  2318. component: Layout,
  2319. hidden: true,
  2320. children: [{
  2321. path: '/statisticAnalysis/profitStatistics/index',
  2322. name: '利润统计',
  2323. meta: {
  2324. i18n: '/statisticAnalysis/profitStatistics/index',
  2325. keepAlive: true,
  2326. },
  2327. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitStatistics/index')
  2328. }]
  2329. }, {
  2330. path: '/purchase/rubberStock/index',
  2331. component: Layout,
  2332. hidden: true,
  2333. children: [{
  2334. path: '/purchase/rubberStock/index',
  2335. name: '橡胶库存',
  2336. meta: {
  2337. i18n: '/purchase/rubberStock/index',
  2338. keepAlive: true,
  2339. },
  2340. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/rubberStock/index')
  2341. }]
  2342. }, {
  2343. path: '/statisticAnalysis/accountBalanceD/index',
  2344. component: Layout,
  2345. hidden: true,
  2346. children: [{
  2347. path: '/statisticAnalysis/accountBalanceD/index',
  2348. name: '应收账款余额',
  2349. meta: {
  2350. i18n: '/statisticAnalysis/accountBalanceD/index',
  2351. keepAlive: true,
  2352. },
  2353. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/accountBalanceD/index')
  2354. }]
  2355. }, {
  2356. path: '/statisticAnalysis/accountBalanceC/index',
  2357. component: Layout,
  2358. hidden: true,
  2359. children: [{
  2360. path: '/statisticAnalysis/accountBalanceC/index',
  2361. name: '应付账款余额',
  2362. meta: {
  2363. i18n: '/statisticAnalysis/accountBalanceC/index',
  2364. keepAlive: true,
  2365. },
  2366. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/accountBalanceC/index')
  2367. }]
  2368. }, {
  2369. path: '/oceanShipping/maritimeExport/index',
  2370. component: Layout,
  2371. hidden: true,
  2372. children: [{
  2373. path: '/oceanShipping/maritimeExport/index',
  2374. name: '海运出口',
  2375. meta: {
  2376. i18n: '/oceanShipping/maritimeExport/index',
  2377. keepAlive: true,
  2378. },
  2379. component: () => import( /* webpackChunkName: "views" */ '@/views/oceanShipping/maritimeExport/index')
  2380. }]
  2381. }, {
  2382. path: '/oceanShipping/oceanFreightImport/index',
  2383. component: Layout,
  2384. hidden: true,
  2385. children: [{
  2386. path: '/oceanShipping/oceanFreightImport/index',
  2387. name: '海运进口',
  2388. meta: {
  2389. i18n: '/oceanShipping/oceanFreightImport/index',
  2390. keepAlive: true,
  2391. },
  2392. component: () => import( /* webpackChunkName: "views" */ '@/views/oceanShipping/oceanFreightImport/index')
  2393. }]
  2394. }, {
  2395. path: '/maintenance/overpayment/index',
  2396. component: Layout,
  2397. hidden: true,
  2398. children: [{
  2399. path: '/maintenance/overpayment/index',
  2400. name: '溢付款',
  2401. meta: {
  2402. i18n: '/maintenance/overpayment/index',
  2403. keepAlive: true,
  2404. },
  2405. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/overpayment/index')
  2406. }]
  2407. }, {
  2408. path: '/maintenance/rebate/index',
  2409. component: Layout,
  2410. hidden: true,
  2411. children: [{
  2412. path: '/maintenance/rebate/index',
  2413. name: '返利',
  2414. meta: {
  2415. i18n: '/maintenance/rebate/index',
  2416. keepAlive: true,
  2417. },
  2418. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/rebate/index')
  2419. }]
  2420. }, {
  2421. path: '/statisticAnalysis/budgetAnalysis/index',
  2422. component: Layout,
  2423. hidden: true,
  2424. children: [{
  2425. path: '/statisticAnalysis/budgetAnalysis/index',
  2426. name: '预算分析',
  2427. meta: {
  2428. i18n: '/statisticAnalysis/budgetAnalysis/index',
  2429. keepAlive: true,
  2430. },
  2431. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/budgetAnalysis/index')
  2432. }]
  2433. }, {
  2434. path: '/annualBudget/index',
  2435. component: Layout,
  2436. hidden: true,
  2437. children: [{
  2438. path: '/annualBudget/index',
  2439. name: '年度预算',
  2440. meta: {
  2441. i18n: '/annualBudget/index',
  2442. keepAlive: true,
  2443. },
  2444. component: () => import( /* webpackChunkName: "views" */ '@/views/annualBudget/index')
  2445. }]
  2446. }, {
  2447. path: '/paymentManagement/paymentRecord/index',
  2448. component: Layout,
  2449. hidden: true,
  2450. children: [{
  2451. path: '/paymentManagement/paymentRecord/index',
  2452. name: '支付记录',
  2453. meta: {
  2454. i18n: '/paymentManagement/paymentRecord/index',
  2455. keepAlive: true,
  2456. },
  2457. component: () => import( /* webpackChunkName: "views" */ '@/views/paymentManagement/paymentRecord/index')
  2458. }]
  2459. }, {
  2460. path: '/productLaunch/index',
  2461. component: Layout,
  2462. hidden: true,
  2463. children: [{
  2464. path: '/productLaunch/index',
  2465. name: '产品上架',
  2466. meta: {
  2467. i18n: '/productLaunch/index',
  2468. keepAlive: true,
  2469. },
  2470. component: () => import( /* webpackChunkName: "views" */ '@/views/productLaunch/index')
  2471. }]
  2472. },{
  2473. path: '/tirePartsMall/basicData/accountManagement/index',
  2474. component: Layout,
  2475. hidden: true,
  2476. children: [{
  2477. path: '/tirePartsMall/basicData/accountManagement/index',
  2478. name: '账户管理',
  2479. meta: {
  2480. i18n: '/tirePartsMall/basicData/accountManagement/index',
  2481. keepAlive: true,
  2482. },
  2483. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/accountManagement/index')
  2484. }]
  2485. },{
  2486. path: '/tirePartsMall/basicData/warehouse/index',
  2487. component: Layout,
  2488. hidden: true,
  2489. children: [{
  2490. path: '/tirePartsMall/basicData/warehouse/index',
  2491. name: '仓库',
  2492. meta: {
  2493. i18n: '/tirePartsMall/basicData/warehouse/index',
  2494. keepAlive: true,
  2495. },
  2496. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/warehouse/index')
  2497. }]
  2498. }, {
  2499. path: '/tirePartsMall/basicData/brandPage/index',
  2500. component: Layout,
  2501. hidden: true,
  2502. children: [{
  2503. path: '/tirePartsMall/basicData/brandPage/index',
  2504. name: '品牌',
  2505. meta: {
  2506. i18n: '/tirePartsMall/basicData/brandPage/index',
  2507. keepAlive: true,
  2508. },
  2509. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/brandPage/index')
  2510. }]
  2511. }, {
  2512. path: '/tirePartsMall/basicData/supplier/index',
  2513. component: Layout,
  2514. hidden: true,
  2515. children: [{
  2516. path: '/tirePartsMall/basicData/supplier/index',
  2517. name: '供应商',
  2518. meta: {
  2519. i18n: '/tirePartsMall/basicData/supplier/index',
  2520. keepAlive: true,
  2521. },
  2522. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/supplier/index')
  2523. }]
  2524. }, {
  2525. path: '/tirePartsMall/basicData/customerInformation/index',
  2526. component: Layout,
  2527. hidden: true,
  2528. children: [{
  2529. path: '/tirePartsMall/basicData/customerInformation/index',
  2530. name: '客户',
  2531. meta: {
  2532. i18n: '/tirePartsMall/basicData/customerInformation/index',
  2533. keepAlive: true,
  2534. },
  2535. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/customerInformation/index')
  2536. }]
  2537. },{
  2538. path: '/tirePartsMall/basicData/commodityInformation/index',
  2539. component: Layout,
  2540. hidden: true,
  2541. children: [{
  2542. path: '/tirePartsMall/basicData/commodityInformation/index',
  2543. name: '轮胎',
  2544. meta: {
  2545. i18n: '/tirePartsMall/basicData/commodityInformation/index',
  2546. keepAlive: true,
  2547. },
  2548. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/commodityInformation/index')
  2549. }]
  2550. }, {
  2551. path: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
  2552. component: Layout,
  2553. hidden: true,
  2554. children: [{
  2555. path: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
  2556. name: '采购入库',
  2557. meta: {
  2558. i18n: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
  2559. keepAlive: true,
  2560. },
  2561. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchasingManagement/warehouseEntryOrder/index')
  2562. }]
  2563. }, {
  2564. path: '/tirePartsMall/salesManagement/purchaseOrder/index',
  2565. component: Layout,
  2566. hidden: true,
  2567. children: [{
  2568. path: '/tirePartsMall/salesManagement/purchaseOrder/index',
  2569. name: '采购订单',
  2570. meta: {
  2571. i18n: '/tirePartsMall/salesManagement/purchaseOrder/index',
  2572. keepAlive: true,
  2573. },
  2574. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/purchaseOrder/index')
  2575. }]
  2576. },{
  2577. path: '/tirePartsMall/salesManagement/inboundTask/index',
  2578. component: Layout,
  2579. hidden: true,
  2580. children: [{
  2581. path: '/tirePartsMall/salesManagement/inboundTask/index',
  2582. name: '入库任务',
  2583. meta: {
  2584. i18n: '/tirePartsMall/salesManagement/inboundTask/index',
  2585. keepAlive: true,
  2586. },
  2587. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/inboundTask/index')
  2588. }]
  2589. },{
  2590. path: '/tirePartsMall/salesManagement/saleOrder/index',
  2591. component: Layout,
  2592. hidden: true,
  2593. children: [{
  2594. path: '/tirePartsMall/salesManagement/saleOrder/index',
  2595. name: '销售订单(L)',
  2596. meta: {
  2597. i18n: '/tirePartsMall/salesManagement/saleOrder/index',
  2598. keepAlive: true,
  2599. },
  2600. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/saleOrder/index')
  2601. }]
  2602. },{
  2603. path: '/tirePartsMall/salesManagement/outboundTask/index',
  2604. component: Layout,
  2605. hidden: true,
  2606. children: [{
  2607. path: '/tirePartsMall/salesManagement/outboundTask/index',
  2608. name: '出库任务(L)',
  2609. meta: {
  2610. i18n: '/tirePartsMall/salesManagement/outboundTask/index',
  2611. keepAlive: true,
  2612. },
  2613. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundTask/index')
  2614. }]
  2615. },{
  2616. path: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
  2617. component: Layout,
  2618. hidden: true,
  2619. children: [{
  2620. path: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
  2621. name: '出库工单(L)',
  2622. meta: {
  2623. i18n: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
  2624. keepAlive: true,
  2625. },
  2626. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundWorkOrder/index')
  2627. }]
  2628. }, {
  2629. path: '/tirePartsMall/basicData/listingManagement/index',
  2630. component: Layout,
  2631. hidden: true,
  2632. children: [{
  2633. path: '/tirePartsMall/basicData/listingManagement/index',
  2634. name: '上架管理',
  2635. meta: {
  2636. i18n: '/tirePartsMall/basicData/listingManagement/index',
  2637. keepAlive: true,
  2638. },
  2639. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/listingManagement/index')
  2640. }]
  2641. }, {
  2642. path: '/tirePartsMall/basicData/shareListing/index',
  2643. component: Layout,
  2644. hidden: true,
  2645. children: [{
  2646. path: '/tirePartsMall/basicData/shareListing/index',
  2647. name: '共享上架',
  2648. meta: {
  2649. i18n: '/tirePartsMall/basicData/shareListing/index',
  2650. keepAlive: true,
  2651. },
  2652. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/shareListing/index')
  2653. }]
  2654. },
  2655. {
  2656. path: '/tirePartsMall/financialManagement/collectionSettlement/index',
  2657. component: Layout,
  2658. hidden: true,
  2659. children: [{
  2660. path: '/tirePartsMall/financialManagement/collectionSettlement/index',
  2661. name: '收款结算(L)',
  2662. meta: {
  2663. i18n: '/tirePartsMall/financialManagement/collectionSettlement/index',
  2664. keepAlive: true,
  2665. },
  2666. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/collectionSettlement/index')
  2667. }]
  2668. },
  2669. {
  2670. path: '/tirePartsMall/financialManagement/collectionSettlement/index',
  2671. component: Layout,
  2672. hidden: true,
  2673. children: [{
  2674. path: '/tirePartsMall/financialManagement/paymentSettlement/index',
  2675. name: '付款结算(L)',
  2676. meta: {
  2677. i18n: '/tirePartsMall/financialManagement/paymentSettlement/index',
  2678. keepAlive: true,
  2679. },
  2680. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/paymentSettlement/index')
  2681. }]
  2682. },
  2683. {
  2684. path: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
  2685. component: Layout,
  2686. hidden: true,
  2687. children: [{
  2688. path: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
  2689. name: '客户往来',
  2690. meta: {
  2691. i18n: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
  2692. keepAlive: true,
  2693. },
  2694. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/customerTransactions/index')
  2695. }]
  2696. },
  2697. {
  2698. path: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
  2699. component: Layout,
  2700. hidden: true,
  2701. children: [{
  2702. path: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
  2703. name: '供应商往来',
  2704. meta: {
  2705. i18n: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
  2706. keepAlive: true,
  2707. },
  2708. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/supplierTransactions/index')
  2709. }]
  2710. },
  2711. {
  2712. path: '/iosBasicData/SeafreightExportF/bills/index',
  2713. component: Layout,
  2714. hidden: true,
  2715. children: [{
  2716. path: '/iosBasicData/SeafreightExportF/bills/index',
  2717. name: '海运出口(F)',
  2718. meta: {
  2719. i18n: '/iosBasicData/SeafreightExportF/bills/index',
  2720. keepAlive: true,
  2721. },
  2722. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/SeafreightExportF/bills/index.vue')
  2723. }]
  2724. },
  2725. {
  2726. path: '/iosBasicData/losbfeestemplate/index',
  2727. component: Layout,
  2728. hidden: true,
  2729. children: [{
  2730. path: '/iosBasicData/losbfeestemplate/index',
  2731. name: '费用模板(F)',
  2732. meta: {
  2733. i18n: '/iosBasicData/losbfeestemplate/index',
  2734. keepAlive: true,
  2735. },
  2736. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/losbfeestemplate/index.vue')
  2737. }]
  2738. },
  2739. {
  2740. path: '/iosBasicData/bcorps/index',
  2741. component: Layout,
  2742. hidden: true,
  2743. children: [{
  2744. path: '/iosBasicData/bcorps/index',
  2745. name: '往来单位(F)',
  2746. meta: {
  2747. i18n: '/iosBasicData/bcorps/index',
  2748. keepAlive: true,
  2749. },
  2750. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/bcorps/index.vue')
  2751. }]
  2752. },
  2753. {
  2754. path: '/iosBasicData/rateManagement/index',
  2755. component: Layout,
  2756. hidden: true,
  2757. children: [{
  2758. path: '/iosBasicData/rateManagement/index',
  2759. name: '币别及汇率(F)',
  2760. meta: {
  2761. i18n: '/iosBasicData/rateManagement/index',
  2762. keepAlive: true,
  2763. },
  2764. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/rateManagement/index.vue')
  2765. }]
  2766. },
  2767. {
  2768. path: '/iosBasicData/baccitemstype/index',
  2769. component: Layout,
  2770. hidden: true,
  2771. children: [{
  2772. path: '/iosBasicData/baccitemstype/index',
  2773. name: '核算项目(F)',
  2774. meta: {
  2775. i18n: '/iosBasicData/baccitemstype/index',
  2776. keepAlive: true,
  2777. },
  2778. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/baccitemstype/index.vue')
  2779. }]
  2780. },
  2781. {
  2782. path: '/financialManagementF/agreementprice/index',
  2783. component: Layout,
  2784. hidden: true,
  2785. children: [{
  2786. path: '/financialManagementF/agreementprice/index',
  2787. name: '协议管理(F)',
  2788. meta: {
  2789. i18n: '/financialManagementF/agreementprice/index',
  2790. keepAlive: true,
  2791. },
  2792. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagementF/agreementprice/index.vue')
  2793. }]
  2794. },
  2795. // 审批详情
  2796. {
  2797. path: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
  2798. component: Layout,
  2799. hidden: true,
  2800. children: [{
  2801. path: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
  2802. name: '审批详情(F)',
  2803. meta: {
  2804. i18n: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
  2805. keepAlive: true,
  2806. },
  2807. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/SeafreightExportF/bills/approvalDetails.vue')
  2808. }]
  2809. },
  2810. // 对账中心(F)
  2811. {
  2812. path: '/iosBasicData/finstlbills/index',
  2813. component: Layout,
  2814. hidden: true,
  2815. children: [{
  2816. path: '/iosBasicData/finstlbills/index',
  2817. name: '对账中心(F)',
  2818. meta: {
  2819. i18n: '/iosBasicData/finstlbills/index',
  2820. keepAlive: true,
  2821. },
  2822. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/finstlbills/index.vue')
  2823. }]
  2824. },
  2825. // 付费申请(F)
  2826. {
  2827. path: '/iosBasicData/PaymentApplication/index',
  2828. component: Layout,
  2829. hidden: true,
  2830. children: [{
  2831. path: '/iosBasicData/PaymentApplication/index',
  2832. name: '付费申请(F)',
  2833. meta: {
  2834. i18n: '/iosBasicData/PaymentApplication/index',
  2835. keepAlive: true,
  2836. },
  2837. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/PaymentApplication/index.vue')
  2838. }]
  2839. },
  2840. // 收款结算(F)
  2841. {
  2842. path: '/iosBasicData/CollectionSettlement/index',
  2843. component: Layout,
  2844. hidden: true,
  2845. children: [{
  2846. path: '/iosBasicData/CollectionSettlement/index',
  2847. name: '收款结算(F)',
  2848. meta: {
  2849. i18n: '/iosBasicData/CollectionSettlement/index',
  2850. keepAlive: true,
  2851. },
  2852. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/CollectionSettlement/index.vue')
  2853. }]
  2854. },
  2855. // 发票中心(F)
  2856. {
  2857. path: '/iosBasicData/fininvoices/index',
  2858. component: Layout,
  2859. hidden: true,
  2860. children: [{
  2861. path: '/iosBasicData/fininvoices/index',
  2862. name: '进项发票(F)',
  2863. meta: {
  2864. i18n: '/iosBasicData/fininvoices/index',
  2865. keepAlive: true,
  2866. },
  2867. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fininvoices/index.vue')
  2868. }]
  2869. },
  2870. {
  2871. path: '/iosBasicData/fininvoicesOutput/index',
  2872. component: Layout,
  2873. hidden: true,
  2874. children: [{
  2875. path: '/iosBasicData/fininvoicesOutput/index',
  2876. name: '销项发票(F)',
  2877. meta: {
  2878. i18n: '/iosBasicData/fininvoicesOutput/index',
  2879. keepAlive: true,
  2880. },
  2881. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fininvoicesOutput/index.vue')
  2882. }]
  2883. },
  2884. // 调拨(L)
  2885. {
  2886. path: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
  2887. component: Layout,
  2888. hidden: true,
  2889. children: [{
  2890. path: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
  2891. name: '调拨(L)',
  2892. meta: {
  2893. i18n: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
  2894. keepAlive: true,
  2895. },
  2896. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundWorkOrderL/index')
  2897. }]
  2898. },
  2899. ]