index.js 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630
  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/EcommerceStocking/index',
  785. component: Layout,
  786. hidden: true,
  787. children: [{
  788. path: '/exportTrade/EcommerceStocking/index',
  789. name: '电商备货(E)',
  790. meta: {
  791. keepAlive: true,
  792. },
  793. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/EcommerceStocking/index')
  794. }]
  795. },
  796. // 出口 采购订单
  797. {
  798. path: '/exportTrade/purchaseContract/index',
  799. component: Layout,
  800. hidden: true,
  801. children: [{
  802. path: '/exportTrade/purchaseContract/index',
  803. name: '采购(E)',
  804. meta: {
  805. keepAlive: true,
  806. },
  807. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseContract/index')
  808. }]
  809. },
  810. // 进口 发货单详情页
  811. {
  812. path: '/importInvoice_detailsPage',
  813. component: Layout,
  814. hidden: true,
  815. children: [{
  816. path: '/importInvoice_detailsPage',
  817. name: '发货单',
  818. meta: {
  819. i18n: 'importInvoice_detailsPage',
  820. keepAlive: true,
  821. },
  822. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/detailsPageEdit')
  823. }]
  824. },
  825. // 出口 收货单
  826. {
  827. path: '/exportTrade/receipt/index',
  828. component: Layout,
  829. hidden: true,
  830. children: [{
  831. path: '/exportTrade/receipt/index',
  832. name: "收货(E)",
  833. meta: {
  834. keepAlive: true,
  835. },
  836. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/receipt/index')
  837. }]
  838. },
  839. // 出口 发货单详情页
  840. {
  841. path: '/exportTrade/invoice/index',
  842. component: Layout,
  843. hidden: true,
  844. children: [{
  845. path: '/exportTrade/invoice/index',
  846. name: "跟单(E)",
  847. meta: {
  848. keepAlive: true,
  849. },
  850. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/invoice/index')
  851. }]
  852. },
  853. // 主营项目
  854. {
  855. path: '/workManagement/main-items/list',
  856. component: Layout,
  857. hidden: true,
  858. children: [{
  859. path: '/workManagement/main-items/list',
  860. name: "主营业务",
  861. meta: {
  862. keepAlive: true,
  863. },
  864. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/main-items/list')
  865. }]
  866. },
  867. // 统计列表
  868. {
  869. path: '/workManagement/receipt/statisticalList',
  870. component: Layout,
  871. hidden: true,
  872. children: [{
  873. path: '/workManagement/receipt/statisticalList',
  874. name: "统计列表",
  875. meta: {
  876. keepAlive: true,
  877. },
  878. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/statisticalList')
  879. }]
  880. },
  881. // 业绩分析
  882. {
  883. path: '/workManagement/performanceAnalysis/index',
  884. component: Layout,
  885. hidden: true,
  886. children: [{
  887. path: '/workManagement/performanceAnalysis/index',
  888. name: "业绩分析",
  889. meta: {
  890. keepAlive: true,
  891. },
  892. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/performanceAnalysis/index')
  893. }]
  894. },
  895. // 结算详情页
  896. {
  897. path: '/workManagement/receipt/settleAccounts',
  898. component: Layout,
  899. hidden: true,
  900. children: [{
  901. path: '/workManagement/receipt/settleAccounts',
  902. name: "结算",
  903. meta: {
  904. keepAlive: true,
  905. },
  906. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/settleAccounts')
  907. }]
  908. },
  909. // 付费申请
  910. {
  911. path: '/financialManagement/paymentRequest/index',
  912. component: Layout,
  913. hidden: true,
  914. children: [{
  915. path: '/financialManagement/paymentRequest/index',
  916. name: "付费申请",
  917. meta: {
  918. i18n: '/financialManagement/paymentRequest/index',
  919. keepAlive: true,
  920. },
  921. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentRequest/index')
  922. }]
  923. },
  924. // 付款结算
  925. {
  926. path: '/financialManagement/paymentSettle/paymentSettle',
  927. component: Layout,
  928. hidden: true,
  929. children: [{
  930. path: '/financialManagement/paymentSettle/paymentSettle',
  931. name: "付款结算",
  932. meta: {
  933. i18n: '/financialManagement/paymentSettle/paymentSettle',
  934. keepAlive: true,
  935. },
  936. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettle/paymentSettle')
  937. }]
  938. },
  939. //收款结算
  940. {
  941. path: '/financialManagement/receiptSettle/receiptSettle',
  942. component: Layout,
  943. hidden: true,
  944. children: [{
  945. path: '/financialManagement/receiptSettle/receiptSettle',
  946. name: "收款结算",
  947. meta: {
  948. i18n: '/financialManagement/receiptSettle/receiptSettle',
  949. keepAlive: true,
  950. },
  951. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/receiptSettle/receiptSettle')
  952. }]
  953. },
  954. // 付款结算(Z)
  955. {
  956. path: '/financialManagement/paymentSettlement/paymentSettle',
  957. component: Layout,
  958. hidden: true,
  959. children: [{
  960. path: '/financialManagement/paymentSettlement/paymentSettle',
  961. name: "付款结算(Z)",
  962. meta: {
  963. i18n: '/financialManagement/paymentSettlement/paymentSettle',
  964. keepAlive: true,
  965. },
  966. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettlement/paymentSettle')
  967. }]
  968. },
  969. //收款结算(Z)
  970. {
  971. path: '/financialManagement/collectionSettlement/receiptSettle',
  972. component: Layout,
  973. hidden: true,
  974. children: [{
  975. path: '/financialManagement/collectionSettlement/receiptSettle',
  976. name: "收款结算(Z)",
  977. meta: {
  978. i18n: '/financialManagement/collectionSettlement/receiptSettle',
  979. keepAlive: true,
  980. },
  981. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/collectionSettlement/receiptSettle')
  982. }]
  983. },
  984. //审批数据
  985. {
  986. path: '/approveData/index',
  987. component: Layout,
  988. hidden: true,
  989. children: [{
  990. path: '/approveData/index',
  991. name: "审批数据",
  992. meta: {
  993. i18n: '/approveData/index',
  994. keepAlive: true,
  995. },
  996. component: () => import( /* webpackChunkName: "views" */ '@/views/approveData/index')
  997. }]
  998. },
  999. // 账单明细
  1000. {
  1001. path: '/bill_details',
  1002. component: Layout,
  1003. hidden: true,
  1004. children: [{
  1005. path: '/financialManagement/billDetails/billDetails',
  1006. name: "账单明细",
  1007. meta: {
  1008. i18n: '/financialManagement/billDetails/billDetails',
  1009. keepAlive: true,
  1010. },
  1011. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/billDetails/billDetails')
  1012. }]
  1013. },
  1014. //销项发票
  1015. {
  1016. path: '/financialManagement/outputInvoice/outputInvoice',
  1017. component: Layout,
  1018. hidden: true,
  1019. children: [{
  1020. path: '/financialManagement/outputInvoice/outputInvoice',
  1021. name: "销项发票",
  1022. meta: {
  1023. i18n: '/financialManagement/outputInvoice/outputInvoice',
  1024. keepAlive: true,
  1025. },
  1026. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/outputInvoice/outputInvoice')
  1027. }]
  1028. },
  1029. //进项发票
  1030. {
  1031. path: '/financialManagement/incomeInvoice/incomeInvoice',
  1032. component: Layout,
  1033. hidden: true,
  1034. children: [{
  1035. path: '/financialManagement/incomeInvoice/incomeInvoice',
  1036. name: "进项发票",
  1037. meta: {
  1038. i18n: '/financialManagement/incomeInvoice/incomeInvoice',
  1039. keepAlive: true,
  1040. },
  1041. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/incomeInvoice/incomeInvoice')
  1042. }]
  1043. },
  1044. //进口库存账
  1045. {
  1046. path: '/purchase/stockBill/index',
  1047. component: Layout,
  1048. hidden: true,
  1049. children: [{
  1050. path: '/purchase/stockBill/index',
  1051. name: "库存账",
  1052. meta: {
  1053. keepAlive: true,
  1054. },
  1055. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/stockBill/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/dataDetail/index',
  1074. component: Layout,
  1075. hidden: true,
  1076. children: [{
  1077. path: '/statisticAnalysis/dataDetail/index',
  1078. name: "数据明细(N)",
  1079. meta: {
  1080. i18n: '/statisticAnalysis/dataDetail/index',
  1081. keepAlive: true,
  1082. },
  1083. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  1084. }]
  1085. },
  1086. {
  1087. path: '/statisticAnalysis/salesmanCommission/index',
  1088. component: Layout,
  1089. hidden: true,
  1090. children: [{
  1091. path: '/statisticAnalysis/salesmanCommission/index',
  1092. name: "销售人员提成(N)",
  1093. meta: {
  1094. i18n: '/statisticAnalysis/salesmanCommission/index',
  1095. keepAlive: true,
  1096. },
  1097. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanCommission/index')
  1098. }]
  1099. },
  1100. {
  1101. path: '/statisticAnalysis/salesDetails/index',
  1102. component: Layout,
  1103. hidden: true,
  1104. children: [{
  1105. path: '/statisticAnalysis/salesDetails/index',
  1106. name: "销售明细(N)",
  1107. meta: {
  1108. i18n: '/statisticAnalysis/salesDetails/index',
  1109. keepAlive: true,
  1110. },
  1111. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesDetails/index')
  1112. }]
  1113. },
  1114. //利润分析
  1115. {
  1116. path: '/statisticAnalysis/profit/index',
  1117. component: Layout,
  1118. hidden: true,
  1119. children: [{
  1120. path: '/statisticAnalysis/profit/index',
  1121. name: "利润分析",
  1122. meta: {
  1123. i18n: '/statisticAnalysis/profit/index',
  1124. keepAlive: true,
  1125. },
  1126. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profit/index')
  1127. }]
  1128. },
  1129. //销售利润
  1130. {
  1131. path: '/statisticAnalysis/salesProfit/index',
  1132. component: Layout,
  1133. hidden: true,
  1134. children: [{
  1135. path: '/statisticAnalysis/salesProfit/index',
  1136. name: "销售利润",
  1137. meta: {
  1138. keepAlive: true,
  1139. },
  1140. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfit/index')
  1141. }]
  1142. },
  1143. //利润分析
  1144. {
  1145. path: '/statisticAnalysis/royalty/index',
  1146. component: Layout,
  1147. hidden: true,
  1148. children: [{
  1149. path: '/statisticAnalysis/royalty/index',
  1150. name: "提成统计",
  1151. meta: {
  1152. i18n: '/statisticAnalysis/royalty/index',
  1153. keepAlive: true,
  1154. },
  1155. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/royalty/index')
  1156. }]
  1157. },
  1158. // 订单详情
  1159. {
  1160. path: '/orderManagement/orderDetail/index',
  1161. component: Layout,
  1162. hidden: true,
  1163. children: [{
  1164. path: '/orderManagement/orderDetail/index',
  1165. name: "订单详情",
  1166. meta: {
  1167. i18n: '/orderManagement/orderDetail/index',
  1168. keepAlive: true,
  1169. },
  1170. component: () => import( /* webpackChunkName: "views" */ '@/views/orderManagement/orderDetail/index')
  1171. }]
  1172. },
  1173. {
  1174. path: '/work/process/leave',
  1175. component: Layout,
  1176. redirect: '/work/process/leave/form',
  1177. children: [{
  1178. path: 'form/:processDefinitionId',
  1179. name: '请假流程',
  1180. meta: {
  1181. i18n: 'work'
  1182. },
  1183. component: () =>
  1184. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/form')
  1185. }, {
  1186. path: 'handle/:taskId/:processInstanceId/:businessId',
  1187. name: '处理请假流程',
  1188. meta: {
  1189. i18n: 'work'
  1190. },
  1191. component: () =>
  1192. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/handle')
  1193. }, {
  1194. path: 'detail/:processInstanceId/:businessId',
  1195. name: '请假流程详情',
  1196. meta: {
  1197. i18n: 'work'
  1198. },
  1199. component: () =>
  1200. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
  1201. }]
  1202. }, {
  1203. path: '/work/process/test',
  1204. component: Layout,
  1205. redirect: '/work/process/test/form',
  1206. children: [{
  1207. path: 'form/:processDefinitionId',
  1208. name: '请假流程',
  1209. meta: {
  1210. i18n: 'work'
  1211. },
  1212. component: () =>
  1213. import( /* webpackChunkName: "views" */ '@/views/work/process/test/form')
  1214. }, {
  1215. path: 'handle/:taskId/:processInstanceId/:businessId',
  1216. name: '处理请假流程',
  1217. meta: {
  1218. i18n: 'work'
  1219. },
  1220. component: () =>
  1221. import( /* webpackChunkName: "views" */ '@/views/work/process/test/handle')
  1222. }, {
  1223. path: 'detail/:processInstanceId/:businessId',
  1224. name: '请假流程详情',
  1225. meta: {
  1226. i18n: 'work'
  1227. },
  1228. component: () =>
  1229. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
  1230. }]
  1231. },
  1232. {
  1233. path: '/businessManagement/inventoryAccount/detail',
  1234. component: Layout,
  1235. hidden: true,
  1236. children: [{
  1237. path: '/businessManagement/inventoryAccount/detail',
  1238. name: '锁定订单明细',
  1239. meta: {
  1240. keepAlive: true,
  1241. },
  1242. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/detail')
  1243. }]
  1244. },
  1245. {
  1246. path: '/basicData/facultyManagement/index',
  1247. component: Layout,
  1248. hidden: true,
  1249. children: [{
  1250. path: '/basicData/facultyManagement/index',
  1251. name: '教职工管理',
  1252. meta: {
  1253. keepAlive: true,
  1254. },
  1255. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/facultyManagement/index')
  1256. }]
  1257. },
  1258. {
  1259. path: '/basicData/salaryConfiguration/index',
  1260. component: Layout,
  1261. hidden: true,
  1262. children: [{
  1263. path: '/basicData/salaryConfiguration/index',
  1264. name: '学校标准配置',
  1265. meta: {
  1266. keepAlive: true,
  1267. },
  1268. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/salaryConfiguration/index')
  1269. }]
  1270. },
  1271. {
  1272. path: '/salaryManagement/primarySchool/index',
  1273. component: Layout,
  1274. hidden: true,
  1275. children: [{
  1276. path: '/salaryManagement/primarySchool/index',
  1277. name: '小学部',
  1278. meta: {
  1279. keepAlive: true,
  1280. },
  1281. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/primarySchool/index')
  1282. }]
  1283. },
  1284. {
  1285. path: '/salaryManagement/juniorhighSchool/index',
  1286. component: Layout,
  1287. hidden: true,
  1288. children: [{
  1289. path: '/salaryManagement/juniorhighSchool/index',
  1290. name: '初中部',
  1291. meta: {
  1292. keepAlive: true,
  1293. },
  1294. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/juniorhighSchool/index')
  1295. }]
  1296. },
  1297. {
  1298. path: '/salaryManagement/highSchool/index',
  1299. component: Layout,
  1300. hidden: true,
  1301. children: [{
  1302. path: '/salaryManagement/highSchool/index',
  1303. name: '高中部',
  1304. meta: {
  1305. keepAlive: true,
  1306. },
  1307. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/highSchool/index')
  1308. }]
  1309. },
  1310. {
  1311. path: '/salaryManagement/logisticsDepartment/index',
  1312. component: Layout,
  1313. hidden: true,
  1314. children: [{
  1315. path: '/salaryManagement/logisticsDepartment/index',
  1316. name: '后勤部',
  1317. meta: {
  1318. keepAlive: true,
  1319. },
  1320. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/logisticsDepartment/index')
  1321. }]
  1322. },
  1323. {
  1324. path: '/system/businessLock/index',
  1325. component: Layout,
  1326. hidden: true,
  1327. children: [{
  1328. path: '/system/businessLock/index',
  1329. name: '模块加锁',
  1330. meta: {
  1331. keepAlive: true,
  1332. },
  1333. component: () => import( /* webpackChunkName: "views" */ '@/views/system/businessLock/index')
  1334. }]
  1335. },
  1336. {
  1337. path: '/dealer/sales/index',
  1338. component: Layout,
  1339. hidden: true,
  1340. children: [{
  1341. path: '/dealer/sales/index',
  1342. name: '销售订单(D)',
  1343. meta: {
  1344. keepAlive: true,
  1345. },
  1346. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/sales/index')
  1347. }]
  1348. },
  1349. {
  1350. path: '/dealer/purchase/index',
  1351. component: Layout,
  1352. hidden: true,
  1353. children: [{
  1354. path: '/dealer/purchase/index',
  1355. name: '采购订单(D)',
  1356. meta: {
  1357. keepAlive: true,
  1358. },
  1359. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchase/index')
  1360. }]
  1361. },
  1362. //司机
  1363. {
  1364. path: '/basicData/landTransportation/driverInformation/index',
  1365. component: Layout,
  1366. hidden: true,
  1367. children: [{
  1368. path: '/basicData/landTransportation/driverInformation/index',
  1369. name: '司机',
  1370. meta: {
  1371. i18n: '/basicData/landTransportation/driverInformation/index',
  1372. keepAlive: true,
  1373. },
  1374. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/driverInformation/index')
  1375. }]
  1376. },
  1377. //车辆
  1378. {
  1379. path: '/basicData/landTransportation/vehicleInformation/index',
  1380. component: Layout,
  1381. hidden: true,
  1382. children: [{
  1383. path: '/basicData/landTransportation/vehicleInformation/index',
  1384. name: '车辆',
  1385. meta: {
  1386. i18n: '/basicData/landTransportation/driverInformation/index',
  1387. keepAlive: true,
  1388. },
  1389. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/vehicleInformation/index')
  1390. }]
  1391. },
  1392. //陆运委托
  1393. {
  1394. path: '/landTransportation/placeAnOrder/index',
  1395. component: Layout,
  1396. hidden: true,
  1397. children: [{
  1398. path: '/landTransportation/placeAnOrder/index',
  1399. name: '委托',
  1400. meta: {
  1401. i18n: '/landTransportation/placeAnOrder/index',
  1402. keepAlive: true,
  1403. },
  1404. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
  1405. }]
  1406. },
  1407. //调度
  1408. {
  1409. path: '/landTransportation/dispatchingCars/index',
  1410. component: Layout,
  1411. hidden: true,
  1412. children: [{
  1413. path: '/landTransportation/dispatchingCars/index',
  1414. name: '调度',
  1415. meta: {
  1416. i18n: '/landTransportation/dispatchingCars/index',
  1417. keepAlive: true,
  1418. },
  1419. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/dispatchingCars/index')
  1420. }]
  1421. },
  1422. //派车
  1423. {
  1424. path: '/landTransportation/motorcadeDriver/index',
  1425. component: Layout,
  1426. hidden: true,
  1427. children: [{
  1428. path: '/landTransportation/motorcadeDriver/index',
  1429. name: '派车',
  1430. meta: {
  1431. i18n: '/landTransportation/motorcadeDriver/index',
  1432. keepAlive: true,
  1433. },
  1434. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/motorcadeDriver/index')
  1435. }]
  1436. },
  1437. //跟踪
  1438. {
  1439. path: '/landTransportation/driver/index',
  1440. component: Layout,
  1441. hidden: true,
  1442. children: [{
  1443. path: '/landTransportation/driver/index',
  1444. name: '跟踪',
  1445. meta: {
  1446. i18n: '/landTransportation/driver/index',
  1447. keepAlive: true,
  1448. },
  1449. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/driver/index')
  1450. }]
  1451. },
  1452. //散货
  1453. {
  1454. path: '/landTransportation/bulkCargo/index',
  1455. component: Layout,
  1456. hidden: true,
  1457. children: [{
  1458. path: '/landTransportation/bulkCargo/index',
  1459. name: '散货',
  1460. meta: {
  1461. i18n: '/landTransportation/bulkCargo/index',
  1462. keepAlive: true,
  1463. },
  1464. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/bulkCargo/index')
  1465. }]
  1466. },
  1467. //陆运台账
  1468. {
  1469. path: '/landTransportation/reportAnalysis/index',
  1470. component: Layout,
  1471. hidden: true,
  1472. children: [{
  1473. path: '/landTransportation/reportAnalysis/index',
  1474. name: '陆运台账',
  1475. meta: {
  1476. i18n: '/landTransportation/reportAnalysis/index',
  1477. keepAlive: true,
  1478. },
  1479. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/reportAnalysis/index')
  1480. }]
  1481. },
  1482. //散货台账
  1483. {
  1484. path: '/landTransportation/bulkReportAnalysis/index',
  1485. component: Layout,
  1486. hidden: true,
  1487. children: [{
  1488. path: '/landTransportation/bulkReportAnalysis/index',
  1489. name: '散货台账',
  1490. meta: {
  1491. i18n: '/landTransportation/bulkReportAnalysis/index',
  1492. keepAlive: true,
  1493. },
  1494. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/bulkReportAnalysis/index')
  1495. }]
  1496. },
  1497. //运维-价格管理
  1498. {
  1499. path: '/maintenance/priceManagement/index',
  1500. component: Layout,
  1501. hidden: true,
  1502. children: [{
  1503. path: '/maintenance/priceManagement/index',
  1504. name: '价格管理',
  1505. meta: {
  1506. i18n: '/maintenance/priceManagement/index',
  1507. keepAlive: true,
  1508. },
  1509. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/index')
  1510. }]
  1511. },
  1512. //经销商库存账
  1513. {
  1514. path: '/dealer/stock/index',
  1515. component: Layout,
  1516. hidden: true,
  1517. children: [{
  1518. path: '/dealer/stock/index',
  1519. name: '库存账(D)',
  1520. meta: {
  1521. i18n: '/dealer/stock/index',
  1522. keepAlive: true,
  1523. },
  1524. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/index')
  1525. }]
  1526. },
  1527. {
  1528. path: '/dealer/stock/detail',
  1529. component: Layout,
  1530. hidden: true,
  1531. children: [{
  1532. path: '/dealer/stock/detail',
  1533. name: '明细账',
  1534. meta: {
  1535. keepAlive: true,
  1536. },
  1537. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/detail')
  1538. }]
  1539. },
  1540. //内贸库存账
  1541. {
  1542. path: '/businessManagement/inventoryAccount/index',
  1543. component: Layout,
  1544. hidden: true,
  1545. children: [{
  1546. path: '/businessManagement/inventoryAccount/index',
  1547. name: '库存账(N)',
  1548. meta: {
  1549. i18n: '/businessManagement/inventoryAccount/index',
  1550. keepAlive: true,
  1551. },
  1552. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/index')
  1553. }]
  1554. },
  1555. //办公用品-采购申请
  1556. {
  1557. path: '/workManagement/purchaseApply/index',
  1558. component: Layout,
  1559. hidden: true,
  1560. children: [{
  1561. path: '/workManagement/purchaseApply/index',
  1562. name: '采购申请',
  1563. meta: {
  1564. i18n: '/workManagement/purchaseApply/index',
  1565. keepAlive: true,
  1566. },
  1567. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/purchaseApply/index')
  1568. }]
  1569. },
  1570. //办公用品-入库
  1571. {
  1572. path: '/workManagement/warehousing/index',
  1573. component: Layout,
  1574. hidden: true,
  1575. children: [{
  1576. path: '/workManagement/warehousing/index',
  1577. name: '入库',
  1578. meta: {
  1579. i18n: '/workManagement/warehousing/index',
  1580. keepAlive: true,
  1581. },
  1582. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/warehousing/index')
  1583. }]
  1584. },
  1585. //办公用品-领用
  1586. {
  1587. path: '/workManagement/requisition/index',
  1588. component: Layout,
  1589. hidden: true,
  1590. children: [{
  1591. path: '/workManagement/requisition/index',
  1592. name: '领用',
  1593. meta: {
  1594. i18n: '/workManagement/requisition/index',
  1595. keepAlive: true,
  1596. },
  1597. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/requisition/index')
  1598. }]
  1599. },
  1600. //销售机会
  1601. {
  1602. path: '/saleLeads/index',
  1603. component: Layout,
  1604. hidden: true,
  1605. children: [{
  1606. path: '/saleLeads/index',
  1607. name: '销售机会',
  1608. meta: {
  1609. i18n: '/saleLeads/index',
  1610. keepAlive: true,
  1611. },
  1612. component: () => import( /* webpackChunkName: "views" */ '@/views/saleLeads/index')
  1613. }]
  1614. },
  1615. //办公用品库存账
  1616. {
  1617. path: '/workManagement/stock/index',
  1618. component: Layout,
  1619. hidden: true,
  1620. children: [{
  1621. path: '/workManagement/stock/index',
  1622. name: '库存账(O)',
  1623. meta: {
  1624. i18n: '/workManagement/stock/index',
  1625. keepAlive: true,
  1626. },
  1627. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/stock/index')
  1628. }]
  1629. },
  1630. //报销
  1631. {
  1632. path: '/reimbursement/index',
  1633. component: Layout,
  1634. hidden: true,
  1635. children: [{
  1636. path: '/reimbursement/index',
  1637. name: '报销',
  1638. meta: {
  1639. i18n: '/reimbursement/index',
  1640. keepAlive: true,
  1641. },
  1642. component: () => import( /* webpackChunkName: "views" */ '@/views/reimbursement/index')
  1643. }]
  1644. },
  1645. //交接单
  1646. {
  1647. path: '/workManagement/handoverSheet/index',
  1648. component: Layout,
  1649. hidden: true,
  1650. children: [{
  1651. path: '/workManagement/handoverSheet/index',
  1652. name: '交接单',
  1653. meta: {
  1654. i18n: '/workManagement/handoverSheet/index',
  1655. keepAlive: true,
  1656. },
  1657. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/handoverSheet/index')
  1658. }]
  1659. },
  1660. //经销商产品调拨
  1661. {
  1662. path: '/dealer/allocation/index',
  1663. component: Layout,
  1664. hidden: true,
  1665. children: [{
  1666. path: '/dealer/allocation/index',
  1667. name: '产品调拨',
  1668. meta: {
  1669. i18n: '/dealer/allocation/index',
  1670. keepAlive: true,
  1671. },
  1672. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/allocation/index')
  1673. }]
  1674. },
  1675. //数据明细(N)
  1676. {
  1677. path: '/statisticAnalysis/dataDetail/index',
  1678. component: Layout,
  1679. hidden: true,
  1680. children: [{
  1681. path: '/statisticAnalysis/dataDetail/index',
  1682. name: '数据明细(N)',
  1683. meta: {
  1684. i18n: '/statisticAnalysis/dataDetail/index',
  1685. keepAlive: true,
  1686. },
  1687. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  1688. }]
  1689. },
  1690. //销售对账
  1691. {
  1692. path: '/statisticAnalysis/salesReconciliation/index',
  1693. component: Layout,
  1694. hidden: true,
  1695. children: [{
  1696. path: '/statisticAnalysis/salesReconciliation/index',
  1697. name: '销售对账',
  1698. meta: {
  1699. i18n: '/statisticAnalysis/salesReconciliation/index',
  1700. keepAlive: true,
  1701. },
  1702. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliation/index')
  1703. }]
  1704. },
  1705. //销售对账详情
  1706. {
  1707. path: '/statisticAnalysis/salesReconciliationDetails/index',
  1708. component: Layout,
  1709. hidden: true,
  1710. children: [{
  1711. path: '/statisticAnalysis/salesReconciliationDetails/index',
  1712. name: '销售对账详情',
  1713. meta: {
  1714. i18n: '/statisticAnalysis/salesReconciliationDetails/index',
  1715. keepAlive: true,
  1716. },
  1717. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliationDetails/index')
  1718. }]
  1719. },
  1720. //应收总账
  1721. {
  1722. path: '/statisticAnalysis/collectLedger/index',
  1723. component: Layout,
  1724. hidden: true,
  1725. children: [{
  1726. path: '/statisticAnalysis/collectLedger/index',
  1727. name: '应收总账',
  1728. meta: {
  1729. i18n: '/statisticAnalysis/collectLedger/index',
  1730. keepAlive: true,
  1731. },
  1732. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/collectLedger/index')
  1733. }]
  1734. },
  1735. //应付总账
  1736. {
  1737. path: '/statisticAnalysis/paymentLedger/index',
  1738. component: Layout,
  1739. hidden: true,
  1740. children: [{
  1741. path: '/statisticAnalysis/paymentLedger/index',
  1742. name: '应付总账',
  1743. meta: {
  1744. i18n: '/statisticAnalysis/paymentLedger/index',
  1745. keepAlive: true,
  1746. },
  1747. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/paymentLedger/index')
  1748. }]
  1749. },
  1750. //利润总账
  1751. {
  1752. path: '/statisticAnalysis/profitLedger/index',
  1753. component: Layout,
  1754. hidden: true,
  1755. children: [{
  1756. path: '/statisticAnalysis/profitLedger/index',
  1757. name: '利润总账',
  1758. meta: {
  1759. i18n: '/statisticAnalysis/profitLedger/index',
  1760. keepAlive: true,
  1761. },
  1762. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitLedger/index')
  1763. }]
  1764. },
  1765. //采购合同(D)
  1766. {
  1767. path: '/dealer/purchaseContract/index',
  1768. component: Layout,
  1769. hidden: true,
  1770. children: [{
  1771. path: '/dealer/purchaseContract/index',
  1772. name: '采购合同(D)',
  1773. meta: {
  1774. i18n: '/dealer/purchaseContract/index',
  1775. keepAlive: true,
  1776. },
  1777. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchaseContract/index')
  1778. }]
  1779. },
  1780. {
  1781. path: '/warehousing/inStock/index',
  1782. component: Layout,
  1783. hidden: true,
  1784. children: [{
  1785. path: '/warehousing/inStock/index',
  1786. name: '入库',
  1787. meta: {
  1788. i18n: '/warehousing/inStock/index',
  1789. keepAlive: true,
  1790. },
  1791. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/inStock/index')
  1792. }]
  1793. },
  1794. {
  1795. path: '/warehousing/outStock/index',
  1796. component: Layout,
  1797. hidden: true,
  1798. children: [{
  1799. path: '/warehousing/outStock/index',
  1800. name: '出库',
  1801. meta: {
  1802. i18n: '/warehousing/outStock/index',
  1803. keepAlive: true,
  1804. },
  1805. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/outStock/index')
  1806. }]
  1807. },
  1808. {
  1809. path: '/warehousing/stockTransfer/index',
  1810. component: Layout,
  1811. hidden: true,
  1812. children: [{
  1813. path: '/warehousing/stockTransfer/index',
  1814. name: '调拨',
  1815. meta: {
  1816. i18n: '/warehousing/stockTransfer/index',
  1817. keepAlive: true,
  1818. },
  1819. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/stockTransfer/index')
  1820. }]
  1821. },
  1822. {
  1823. path: '/warehousing/goodsTransfer/index',
  1824. component: Layout,
  1825. hidden: true,
  1826. children: [{
  1827. path: '/warehousing/goodsTransfer/index',
  1828. name: '货转',
  1829. meta: {
  1830. i18n: '/warehousing/goodsTransfer/index',
  1831. keepAlive: true,
  1832. },
  1833. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/goodsTransfer/index')
  1834. }]
  1835. },
  1836. {
  1837. path: '/statisticAnalysis/taskStatistics/index',
  1838. component: Layout,
  1839. hidden: true,
  1840. children: [{
  1841. path: '/statisticAnalysis/taskStatistics/index',
  1842. name: '任务统计',
  1843. meta: {
  1844. i18n: '/statisticAnalysis/taskStatistics/index',
  1845. keepAlive: true,
  1846. },
  1847. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/taskStatistics/index')
  1848. }]
  1849. },
  1850. {
  1851. path: '/statisticAnalysis/commissionStatistics/index',
  1852. component: Layout,
  1853. hidden: true,
  1854. children: [{
  1855. path: '/statisticAnalysis/commissionStatistics/index',
  1856. name: '提成统计(S)',
  1857. meta: {
  1858. i18n: '/statisticAnalysis/commissionStatistics/index',
  1859. keepAlive: true,
  1860. },
  1861. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/commissionStatistics/index')
  1862. }]
  1863. }, {
  1864. path: '/purchasingManagement/inStock/index',
  1865. component: Layout,
  1866. hidden: true,
  1867. children: [{
  1868. path: '/purchasingManagement/inStock/index',
  1869. name: '入库管理',
  1870. meta: {
  1871. i18n: '/purchasingManagement/inStock/index',
  1872. keepAlive: true,
  1873. },
  1874. component: () => import( /* webpackChunkName: "views" */ '@/views/purchasingManagement/inStock/index')
  1875. }]
  1876. }, {
  1877. path: '/basicData/agreement/index',
  1878. component: Layout,
  1879. hidden: true,
  1880. children: [{
  1881. path: '/basicData/agreement/index',
  1882. name: '仓储费协议',
  1883. meta: {
  1884. i18n: '/basicData/agreement/index',
  1885. keepAlive: true,
  1886. },
  1887. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/agreement/index')
  1888. }]
  1889. }, {
  1890. path: '/financing/financingManagement/index',
  1891. component: Layout,
  1892. hidden: true,
  1893. children: [{
  1894. path: '/financing/financingManagement/index',
  1895. name: '融资管理',
  1896. meta: {
  1897. i18n: '/financing/financingManagement/index',
  1898. keepAlive: true,
  1899. },
  1900. component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingManagement/index')
  1901. }]
  1902. }, {
  1903. path: '/financing/financingLedger/index',
  1904. component: Layout,
  1905. hidden: true,
  1906. children: [{
  1907. path: '/financing/financingLedger/index',
  1908. name: '融资总账',
  1909. meta: {
  1910. i18n: '/financing/financingLedger/index',
  1911. keepAlive: true,
  1912. },
  1913. component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingLedger/index')
  1914. }]
  1915. }, {
  1916. path: '/financing/financingLedger/detail',
  1917. component: Layout,
  1918. hidden: true,
  1919. children: [{
  1920. path: '/financing/financingLedger/detail',
  1921. name: '融资总账明细',
  1922. meta: {
  1923. i18n: '/financing/financingLedger/detail',
  1924. keepAlive: true,
  1925. },
  1926. component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingLedger/detail')
  1927. }]
  1928. }, {
  1929. path: '/InventoryManagement/inventoryAccount/index',
  1930. component: Layout,
  1931. hidden: true,
  1932. children: [{
  1933. path: '/InventoryManagement/inventoryAccount/index',
  1934. name: '库存帐',
  1935. meta: {
  1936. i18n: '/InventoryManagement/inventoryAccount/index',
  1937. keepAlive: true,
  1938. },
  1939. component: () => import( /* webpackChunkName: "views" */ '@/views/InventoryManagement/inventoryAccount/index')
  1940. }]
  1941. }, {
  1942. path: '/salesManagement/outStock/index',
  1943. component: Layout,
  1944. hidden: true,
  1945. children: [{
  1946. path: '/salesManagement/outStock/index',
  1947. name: '出库管理',
  1948. meta: {
  1949. i18n: '/salesManagement/outStock/index',
  1950. keepAlive: true,
  1951. },
  1952. component: () => import( /* webpackChunkName: "views" */ '@/views/salesManagement/outStock/index')
  1953. }]
  1954. }, {
  1955. path: '/client/index',
  1956. component: Layout,
  1957. hidden: true,
  1958. children: [{
  1959. path: '/client/index',
  1960. name: '客户(Y)',
  1961. meta: {
  1962. i18n: '/client/index',
  1963. keepAlive: true,
  1964. },
  1965. component: () => import( /* webpackChunkName: "views" */ '@/views/client/index')
  1966. }]
  1967. }, {
  1968. path: '/client/index',
  1969. component: Layout,
  1970. hidden: true,
  1971. children: [{
  1972. path: '/client/index',
  1973. name: '客户(Y)',
  1974. meta: {
  1975. i18n: '/client/index',
  1976. keepAlive: true,
  1977. },
  1978. component: () => import( /* webpackChunkName: "views" */ '@/views/client/index')
  1979. }]
  1980. }, {
  1981. path: '/salesOrder/index',
  1982. component: Layout,
  1983. hidden: true,
  1984. children: [{
  1985. path: '/salesOrder/index',
  1986. name: '销售单',
  1987. meta: {
  1988. i18n: '/salesOrder/index',
  1989. keepAlive: true,
  1990. },
  1991. component: () => import( /* webpackChunkName: "views" */ '@/views/salesOrder/index')
  1992. }]
  1993. }, {
  1994. path: '/salesOrderTwo/index',
  1995. component: Layout,
  1996. hidden: true,
  1997. children: [{
  1998. path: '/salesOrderTwo/index',
  1999. name: '销售计划单',
  2000. meta: {
  2001. i18n: '/salesOrderTwo/index',
  2002. keepAlive: true,
  2003. },
  2004. component: () => import( /* webpackChunkName: "views" */ '@/views/salesOrderTwo/index')
  2005. }]
  2006. }, {
  2007. path: '/purchaseOrder/index',
  2008. component: Layout,
  2009. hidden: true,
  2010. children: [{
  2011. path: '/purchaseOrder/index',
  2012. name: '采购单',
  2013. meta: {
  2014. i18n: '/purchaseOrder/index',
  2015. keepAlive: true,
  2016. },
  2017. component: () => import( /* webpackChunkName: "views" */ '@/views/purchaseOrder/index')
  2018. }]
  2019. }, {
  2020. path: '/product/index',
  2021. component: Layout,
  2022. hidden: true,
  2023. children: [{
  2024. path: '/product/index',
  2025. name: '产品',
  2026. meta: {
  2027. i18n: '/product/index',
  2028. keepAlive: true,
  2029. },
  2030. component: () => import( /* webpackChunkName: "views" */ '@/views/product/index')
  2031. }]
  2032. }, {
  2033. path: '/tirePartsMall/inventory/index',
  2034. component: Layout,
  2035. hidden: true,
  2036. children: [{
  2037. path: '/tirePartsMall/inventory/index',
  2038. name: '库存查询',
  2039. meta: {
  2040. i18n: '/tirePartsMall/inventory/index',
  2041. keepAlive: true,
  2042. },
  2043. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/inventory/index')
  2044. }]
  2045. }, {
  2046. path: '/tirePartsMall/inventory/detail',
  2047. component: Layout,
  2048. hidden: true,
  2049. children: [{
  2050. path: '/tirePartsMall/inventory/detail',
  2051. name: '库存账明细',
  2052. meta: {
  2053. keepAlive: true,
  2054. },
  2055. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/inventory/detail')
  2056. }]
  2057. }, {
  2058. path: '/statisticAnalysis/AmtAmount/index',
  2059. component: Layout,
  2060. hidden: true,
  2061. children: [{
  2062. path: '/statisticAnalysis/AmtAmount/index',
  2063. name: '数量金额汇总',
  2064. meta: {
  2065. i18n: '/statisticAnalysis/AmtAmount/index',
  2066. keepAlive: true,
  2067. },
  2068. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/AmtAmount/index')
  2069. }]
  2070. }, {
  2071. path: '/statisticAnalysis/customerDelivery/index',
  2072. component: Layout,
  2073. hidden: true,
  2074. children: [{
  2075. path: '/statisticAnalysis/customerDelivery/index',
  2076. name: '发货客户统计',
  2077. meta: {
  2078. i18n: '/statisticAnalysis/customerDelivery/index',
  2079. keepAlive: true,
  2080. },
  2081. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/customerDelivery/index')
  2082. }]
  2083. }, {
  2084. path: '/statisticAnalysis/salesmanDelivery/index',
  2085. component: Layout,
  2086. hidden: true,
  2087. children: [{
  2088. path: '/statisticAnalysis/salesmanDelivery/index',
  2089. name: '发货业务员统计',
  2090. meta: {
  2091. i18n: '/statisticAnalysis/salesmanDelivery/index',
  2092. keepAlive: true,
  2093. },
  2094. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanDelivery/index')
  2095. }]
  2096. }, {
  2097. path: '/statisticAnalysis/specificationsDelivery/index',
  2098. component: Layout,
  2099. hidden: true,
  2100. children: [{
  2101. path: '/statisticAnalysis/specificationsDelivery/index',
  2102. name: '发货规格统计',
  2103. meta: {
  2104. i18n: '/statisticAnalysis/specificationsDelivery/index',
  2105. keepAlive: true,
  2106. },
  2107. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/specificationsDelivery/index')
  2108. }]
  2109. }, {
  2110. path: '/statisticAnalysis/customerProfit/index',
  2111. component: Layout,
  2112. hidden: true,
  2113. children: [{
  2114. path: '/statisticAnalysis/customerProfit/index',
  2115. name: '客户利润统计',
  2116. meta: {
  2117. i18n: '/statisticAnalysis/customerProfit/index',
  2118. keepAlive: true,
  2119. },
  2120. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/customerProfit/index')
  2121. }]
  2122. }, {
  2123. path: '/statisticAnalysis/salesmanProfit/index',
  2124. component: Layout,
  2125. hidden: true,
  2126. children: [{
  2127. path: '/statisticAnalysis/salesmanProfit/index',
  2128. name: '业务员利润统计',
  2129. meta: {
  2130. i18n: '/statisticAnalysis/salesmanProfit/index',
  2131. keepAlive: true,
  2132. },
  2133. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanProfit/index')
  2134. }]
  2135. }, {
  2136. path: '/statisticAnalysis/brandProfit/index',
  2137. component: Layout,
  2138. hidden: true,
  2139. children: [{
  2140. path: '/statisticAnalysis/brandProfit/index',
  2141. name: '品牌利润对比统计',
  2142. meta: {
  2143. i18n: '/statisticAnalysis/brandProfit/index',
  2144. keepAlive: true,
  2145. },
  2146. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/brandProfit/index')
  2147. }]
  2148. }, {
  2149. path: '/supplier/index',
  2150. component: Layout,
  2151. hidden: true,
  2152. children: [{
  2153. path: '/supplier/index',
  2154. name: '供应商(Y)',
  2155. meta: {
  2156. i18n: '/supplier/index',
  2157. keepAlive: true,
  2158. },
  2159. component: () => import( /* webpackChunkName: "views" */ '@/views/supplier/index')
  2160. }]
  2161. }, {
  2162. path: '/basicData/container/archives',
  2163. component: Layout,
  2164. hidden: true,
  2165. children: [{
  2166. path: '/basicData/container/archives',
  2167. name: '箱档案',
  2168. meta: {
  2169. i18n: '/basicData/container/archives',
  2170. keepAlive: true,
  2171. },
  2172. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/archives')
  2173. }]
  2174. }, {
  2175. path: '/boxManagement/buyContainer/index',
  2176. component: Layout,
  2177. hidden: true,
  2178. children: [{
  2179. path: '/boxManagement/buyContainer/index',
  2180. name: '买箱',
  2181. meta: {
  2182. i18n: '/boxManagement/buyContainer/index',
  2183. keepAlive: true,
  2184. },
  2185. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/buyContainer/index')
  2186. }]
  2187. }, {
  2188. path: '/boxManagement/sellingContainers/index',
  2189. component: Layout,
  2190. hidden: true,
  2191. children: [{
  2192. path: '/boxManagement/sellingContainers/index',
  2193. name: '卖箱',
  2194. meta: {
  2195. i18n: '/boxManagement/sellingContainers/index',
  2196. keepAlive: true,
  2197. },
  2198. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/sellingContainers/index')
  2199. }]
  2200. }, {
  2201. path: '/boxManagement/exportShipment/index',
  2202. component: Layout,
  2203. hidden: true,
  2204. children: [{
  2205. path: '/boxManagement/exportShipment/index',
  2206. name: '出口装运',
  2207. meta: {
  2208. i18n: '/boxManagement/exportShipment/index',
  2209. keepAlive: true,
  2210. },
  2211. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/exportShipment/index')
  2212. }]
  2213. }, {
  2214. path: '/boxManagement/importReturnTrip/index',
  2215. component: Layout,
  2216. hidden: true,
  2217. children: [{
  2218. path: '/boxManagement/importReturnTrip/index',
  2219. name: '进口返程',
  2220. meta: {
  2221. i18n: '/boxManagement/importReturnTrip/index',
  2222. keepAlive: true,
  2223. },
  2224. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/importReturnTrip/index')
  2225. }]
  2226. }, {
  2227. path: '/boxManagement/boxRepair/index',
  2228. component: Layout,
  2229. hidden: true,
  2230. children: [{
  2231. path: '/boxManagement/boxRepair/index',
  2232. name: '修箱',
  2233. meta: {
  2234. i18n: '/boxManagement/boxRepair/index',
  2235. keepAlive: true,
  2236. },
  2237. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxRepair/index')
  2238. }]
  2239. }, {
  2240. path: '/boxManagement/boxWashing/index',
  2241. component: Layout,
  2242. hidden: true,
  2243. children: [{
  2244. path: '/boxManagement/boxWashing/index',
  2245. name: '洗箱',
  2246. meta: {
  2247. i18n: '/boxManagement/boxWashing/index',
  2248. keepAlive: true,
  2249. },
  2250. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxWashing/index')
  2251. }]
  2252. }, {
  2253. path: '/boxManagement/leaseIn/index',
  2254. component: Layout,
  2255. hidden: true,
  2256. children: [{
  2257. path: '/boxManagement/leaseIn/index',
  2258. name: '租入',
  2259. meta: {
  2260. i18n: '/boxManagement/leaseIn/index',
  2261. keepAlive: true,
  2262. },
  2263. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/leaseIn/index')
  2264. }]
  2265. }, {
  2266. path: '/boxManagement/leaseOut/index',
  2267. component: Layout,
  2268. hidden: true,
  2269. children: [{
  2270. path: '/boxManagement/leaseOut/index',
  2271. name: '租出',
  2272. meta: {
  2273. i18n: '/boxManagement/leaseOut/index',
  2274. keepAlive: true,
  2275. },
  2276. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/leaseOut/index')
  2277. }]
  2278. }, {
  2279. path: '/purchase/importDeclaration/index',
  2280. component: Layout,
  2281. hidden: true,
  2282. children: [{
  2283. path: '/purchase/importDeclaration/index',
  2284. name: '进口报关',
  2285. meta: {
  2286. i18n: '/purchase/importDeclaration/index',
  2287. keepAlive: true,
  2288. },
  2289. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/importDeclaration/index')
  2290. }]
  2291. }, {
  2292. path: '/purchase/exportDeclaration/index',
  2293. component: Layout,
  2294. hidden: true,
  2295. children: [{
  2296. path: '/purchase/exportDeclaration/index',
  2297. name: '出口报关',
  2298. meta: {
  2299. i18n: '/purchase/exportDeclaration/index',
  2300. keepAlive: true,
  2301. },
  2302. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/exportDeclaration/index')
  2303. }]
  2304. }, {
  2305. path: '/boxManagement/boxTrack/index',
  2306. component: Layout,
  2307. hidden: true,
  2308. children: [{
  2309. path: '/boxManagement/boxTrack/index',
  2310. name: '箱轨迹',
  2311. meta: {
  2312. i18n: '/boxManagement/boxTrack/index',
  2313. keepAlive: true,
  2314. },
  2315. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxTrack/index')
  2316. }]
  2317. }, {
  2318. path: '/boxManagement/stockpilingManage/index',
  2319. component: Layout,
  2320. hidden: true,
  2321. children: [{
  2322. path: '/boxManagement/stockpilingManage/index',
  2323. name: '堆存管理',
  2324. meta: {
  2325. i18n: '/boxManagement/stockpilingManage/index',
  2326. keepAlive: true,
  2327. },
  2328. component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/stockpilingManage/index')
  2329. }]
  2330. }, {
  2331. path: '/statisticAnalysis/profitStatistics/index',
  2332. component: Layout,
  2333. hidden: true,
  2334. children: [{
  2335. path: '/statisticAnalysis/profitStatistics/index',
  2336. name: '利润统计',
  2337. meta: {
  2338. i18n: '/statisticAnalysis/profitStatistics/index',
  2339. keepAlive: true,
  2340. },
  2341. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitStatistics/index')
  2342. }]
  2343. }, {
  2344. path: '/purchase/rubberStock/index',
  2345. component: Layout,
  2346. hidden: true,
  2347. children: [{
  2348. path: '/purchase/rubberStock/index',
  2349. name: '橡胶库存',
  2350. meta: {
  2351. i18n: '/purchase/rubberStock/index',
  2352. keepAlive: true,
  2353. },
  2354. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/rubberStock/index')
  2355. }]
  2356. }, {
  2357. path: '/statisticAnalysis/accountBalanceD/index',
  2358. component: Layout,
  2359. hidden: true,
  2360. children: [{
  2361. path: '/statisticAnalysis/accountBalanceD/index',
  2362. name: '应收账款余额',
  2363. meta: {
  2364. i18n: '/statisticAnalysis/accountBalanceD/index',
  2365. keepAlive: true,
  2366. },
  2367. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/accountBalanceD/index')
  2368. }]
  2369. }, {
  2370. path: '/statisticAnalysis/accountBalanceC/index',
  2371. component: Layout,
  2372. hidden: true,
  2373. children: [{
  2374. path: '/statisticAnalysis/accountBalanceC/index',
  2375. name: '应付账款余额',
  2376. meta: {
  2377. i18n: '/statisticAnalysis/accountBalanceC/index',
  2378. keepAlive: true,
  2379. },
  2380. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/accountBalanceC/index')
  2381. }]
  2382. }, {
  2383. path: '/oceanShipping/maritimeExport/index',
  2384. component: Layout,
  2385. hidden: true,
  2386. children: [{
  2387. path: '/oceanShipping/maritimeExport/index',
  2388. name: '海运出口',
  2389. meta: {
  2390. i18n: '/oceanShipping/maritimeExport/index',
  2391. keepAlive: true,
  2392. },
  2393. component: () => import( /* webpackChunkName: "views" */ '@/views/oceanShipping/maritimeExport/index')
  2394. }]
  2395. }, {
  2396. path: '/oceanShipping/oceanFreightImport/index',
  2397. component: Layout,
  2398. hidden: true,
  2399. children: [{
  2400. path: '/oceanShipping/oceanFreightImport/index',
  2401. name: '海运进口',
  2402. meta: {
  2403. i18n: '/oceanShipping/oceanFreightImport/index',
  2404. keepAlive: true,
  2405. },
  2406. component: () => import( /* webpackChunkName: "views" */ '@/views/oceanShipping/oceanFreightImport/index')
  2407. }]
  2408. }, {
  2409. path: '/maintenance/overpayment/index',
  2410. component: Layout,
  2411. hidden: true,
  2412. children: [{
  2413. path: '/maintenance/overpayment/index',
  2414. name: '溢付款',
  2415. meta: {
  2416. i18n: '/maintenance/overpayment/index',
  2417. keepAlive: true,
  2418. },
  2419. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/overpayment/index')
  2420. }]
  2421. }, {
  2422. path: '/maintenance/rebate/index',
  2423. component: Layout,
  2424. hidden: true,
  2425. children: [{
  2426. path: '/maintenance/rebate/index',
  2427. name: '返利',
  2428. meta: {
  2429. i18n: '/maintenance/rebate/index',
  2430. keepAlive: true,
  2431. },
  2432. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/rebate/index')
  2433. }]
  2434. }, {
  2435. path: '/statisticAnalysis/budgetAnalysis/index',
  2436. component: Layout,
  2437. hidden: true,
  2438. children: [{
  2439. path: '/statisticAnalysis/budgetAnalysis/index',
  2440. name: '预算分析',
  2441. meta: {
  2442. i18n: '/statisticAnalysis/budgetAnalysis/index',
  2443. keepAlive: true,
  2444. },
  2445. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/budgetAnalysis/index')
  2446. }]
  2447. }, {
  2448. path: '/annualBudget/index',
  2449. component: Layout,
  2450. hidden: true,
  2451. children: [{
  2452. path: '/annualBudget/index',
  2453. name: '年度预算',
  2454. meta: {
  2455. i18n: '/annualBudget/index',
  2456. keepAlive: true,
  2457. },
  2458. component: () => import( /* webpackChunkName: "views" */ '@/views/annualBudget/index')
  2459. }]
  2460. }, {
  2461. path: '/paymentManagement/paymentRecord/index',
  2462. component: Layout,
  2463. hidden: true,
  2464. children: [{
  2465. path: '/paymentManagement/paymentRecord/index',
  2466. name: '支付记录',
  2467. meta: {
  2468. i18n: '/paymentManagement/paymentRecord/index',
  2469. keepAlive: true,
  2470. },
  2471. component: () => import( /* webpackChunkName: "views" */ '@/views/paymentManagement/paymentRecord/index')
  2472. }]
  2473. }, {
  2474. path: '/productLaunch/index',
  2475. component: Layout,
  2476. hidden: true,
  2477. children: [{
  2478. path: '/productLaunch/index',
  2479. name: '产品上架',
  2480. meta: {
  2481. i18n: '/productLaunch/index',
  2482. keepAlive: true,
  2483. },
  2484. component: () => import( /* webpackChunkName: "views" */ '@/views/productLaunch/index')
  2485. }]
  2486. }, {
  2487. path: '/tirePartsMall/basicData/accountManagement/index',
  2488. component: Layout,
  2489. hidden: true,
  2490. children: [{
  2491. path: '/tirePartsMall/basicData/accountManagement/index',
  2492. name: '账户管理',
  2493. meta: {
  2494. i18n: '/tirePartsMall/basicData/accountManagement/index',
  2495. keepAlive: true,
  2496. },
  2497. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/accountManagement/index')
  2498. }]
  2499. }, {
  2500. path: '/tirePartsMall/basicData/warehouse/index',
  2501. component: Layout,
  2502. hidden: true,
  2503. children: [{
  2504. path: '/tirePartsMall/basicData/warehouse/index',
  2505. name: '仓库',
  2506. meta: {
  2507. i18n: '/tirePartsMall/basicData/warehouse/index',
  2508. keepAlive: true,
  2509. },
  2510. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/warehouse/index')
  2511. }]
  2512. }, {
  2513. path: '/tirePartsMall/basicData/brandPage/index',
  2514. component: Layout,
  2515. hidden: true,
  2516. children: [{
  2517. path: '/tirePartsMall/basicData/brandPage/index',
  2518. name: '品牌',
  2519. meta: {
  2520. i18n: '/tirePartsMall/basicData/brandPage/index',
  2521. keepAlive: true,
  2522. },
  2523. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/brandPage/index')
  2524. }]
  2525. }, {
  2526. path: '/tirePartsMall/basicData/supplier/index',
  2527. component: Layout,
  2528. hidden: true,
  2529. children: [{
  2530. path: '/tirePartsMall/basicData/supplier/index',
  2531. name: '供应商',
  2532. meta: {
  2533. i18n: '/tirePartsMall/basicData/supplier/index',
  2534. keepAlive: true,
  2535. },
  2536. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/supplier/index')
  2537. }]
  2538. }, {
  2539. path: '/tirePartsMall/basicData/customerInformation/index',
  2540. component: Layout,
  2541. hidden: true,
  2542. children: [{
  2543. path: '/tirePartsMall/basicData/customerInformation/index',
  2544. name: '客户',
  2545. meta: {
  2546. i18n: '/tirePartsMall/basicData/customerInformation/index',
  2547. keepAlive: true,
  2548. },
  2549. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/customerInformation/index')
  2550. }]
  2551. }, {
  2552. path: '/tirePartsMall/basicData/commodityInformation/index',
  2553. component: Layout,
  2554. hidden: true,
  2555. children: [{
  2556. path: '/tirePartsMall/basicData/commodityInformation/index',
  2557. name: '商品',
  2558. meta: {
  2559. i18n: '/tirePartsMall/basicData/commodityInformation/index',
  2560. keepAlive: true,
  2561. },
  2562. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/commodityInformation/index')
  2563. }]
  2564. }, {
  2565. path: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
  2566. component: Layout,
  2567. hidden: true,
  2568. children: [{
  2569. path: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
  2570. name: '采购入库',
  2571. meta: {
  2572. i18n: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
  2573. keepAlive: true,
  2574. },
  2575. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchasingManagement/warehouseEntryOrder/index')
  2576. }]
  2577. }, {
  2578. path: '/tirePartsMall/salesManagement/purchaseOrder/index',
  2579. component: Layout,
  2580. hidden: true,
  2581. children: [{
  2582. path: '/tirePartsMall/salesManagement/purchaseOrder/index',
  2583. name: '采购订单',
  2584. meta: {
  2585. i18n: '/tirePartsMall/salesManagement/purchaseOrder/index',
  2586. keepAlive: true,
  2587. },
  2588. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/purchaseOrder/index')
  2589. }]
  2590. }, {
  2591. path: '/tirePartsMall/salesManagement/Inventory/index',
  2592. component: Layout,
  2593. hidden: true,
  2594. children: [{
  2595. path: '/tirePartsMall/salesManagement/Inventory/index',
  2596. name: '盘点(L)',
  2597. meta: {
  2598. i18n: '/tirePartsMall/salesManagement/Inventory/index',
  2599. keepAlive: true,
  2600. },
  2601. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/Inventory/index')
  2602. }]
  2603. }, {
  2604. path: '/tirePartsMall/salesManagement/inboundTask/index',
  2605. component: Layout,
  2606. hidden: true,
  2607. children: [{
  2608. path: '/tirePartsMall/salesManagement/inboundTask/index',
  2609. name: '入库任务',
  2610. meta: {
  2611. i18n: '/tirePartsMall/salesManagement/inboundTask/index',
  2612. keepAlive: true,
  2613. },
  2614. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/inboundTask/index')
  2615. }]
  2616. }, {
  2617. path: '/tirePartsMall/salesManagement/saleOrder/index',
  2618. component: Layout,
  2619. hidden: true,
  2620. children: [{
  2621. path: '/tirePartsMall/salesManagement/saleOrder/index',
  2622. name: '销售订单(L)',
  2623. meta: {
  2624. i18n: '/tirePartsMall/salesManagement/saleOrder/index',
  2625. keepAlive: true,
  2626. },
  2627. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/saleOrder/index')
  2628. }]
  2629. }, {
  2630. path: '/tirePartsMall/salesManagement/outboundTask/index',
  2631. component: Layout,
  2632. hidden: true,
  2633. children: [{
  2634. path: '/tirePartsMall/salesManagement/outboundTask/index',
  2635. name: '出库任务(L)',
  2636. meta: {
  2637. i18n: '/tirePartsMall/salesManagement/outboundTask/index',
  2638. keepAlive: true,
  2639. },
  2640. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundTask/index')
  2641. }]
  2642. }, {
  2643. path: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
  2644. component: Layout,
  2645. hidden: true,
  2646. children: [{
  2647. path: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
  2648. name: '出库工单(L)',
  2649. meta: {
  2650. i18n: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
  2651. keepAlive: true,
  2652. },
  2653. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundWorkOrder/index')
  2654. }]
  2655. }, {
  2656. path: '/tirePartsMall/salesService/returns/index',
  2657. component: Layout,
  2658. hidden: true,
  2659. children: [{
  2660. path: '/tirePartsMall/salesService/returns/index',
  2661. name: '销售退货(L)',
  2662. meta: {
  2663. i18n: '/tirePartsMall/salesService/returns/index',
  2664. keepAlive: true,
  2665. },
  2666. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesService/returns/index')
  2667. }]
  2668. }, {
  2669. path: '/tirePartsMall/salesService/Task/index',
  2670. component: Layout,
  2671. hidden: true,
  2672. children: [{
  2673. path: '/tirePartsMall/salesService/Task/index',
  2674. name: '销售退单任务(L)',
  2675. meta: {
  2676. i18n: '/tirePartsMall/salesService/Task/index',
  2677. keepAlive: true,
  2678. },
  2679. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesService/Task/index')
  2680. }]
  2681. }, {
  2682. path: '/tirePartsMall/salesService/inStorage/index',
  2683. component: Layout,
  2684. hidden: true,
  2685. children: [{
  2686. path: '/tirePartsMall/salesService/inStorage/index',
  2687. name: '退货入库(L)',
  2688. meta: {
  2689. i18n: '/tirePartsMall/salesService/inStorage/index',
  2690. keepAlive: true,
  2691. },
  2692. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesService/inStorage/index')
  2693. }]
  2694. }, {
  2695. path: '/tirePartsMall/purchaseService/returns/index',
  2696. component: Layout,
  2697. hidden: true,
  2698. children: [{
  2699. path: '/tirePartsMall/purchaseService/returns/index',
  2700. name: '采购退货(L)',
  2701. meta: {
  2702. i18n: '/tirePartsMall/purchaseService/returns/index',
  2703. keepAlive: true,
  2704. },
  2705. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchaseService/returns/index')
  2706. }]
  2707. }, {
  2708. path: '/tirePartsMall/purchaseService/Task/index',
  2709. component: Layout,
  2710. hidden: true,
  2711. children: [{
  2712. path: '/tirePartsMall/purchaseService/Task/index',
  2713. name: '采购退单任务(L)',
  2714. meta: {
  2715. i18n: '/tirePartsMall/purchaseService/Task/index',
  2716. keepAlive: true,
  2717. },
  2718. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchaseService/Task/index')
  2719. }]
  2720. }, {
  2721. path: '/tirePartsMall/purchaseService/inStorage/index',
  2722. component: Layout,
  2723. hidden: true,
  2724. children: [{
  2725. path: '/tirePartsMall/purchaseService/outStorage/index',
  2726. name: '退货出库(L)',
  2727. meta: {
  2728. i18n: '/tirePartsMall/purchaseService/outStorage/index',
  2729. keepAlive: true,
  2730. },
  2731. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchaseService/outStorage/index')
  2732. }]
  2733. }, {
  2734. path: '/tirePartsMall/basicData/listingManagement/index',
  2735. component: Layout,
  2736. hidden: true,
  2737. children: [{
  2738. path: '/tirePartsMall/basicData/listingManagement/index',
  2739. name: '上架管理',
  2740. meta: {
  2741. i18n: '/tirePartsMall/basicData/listingManagement/index',
  2742. keepAlive: true,
  2743. },
  2744. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/listingManagement/index')
  2745. }]
  2746. }, {
  2747. path: '/tirePartsMall/basicData/shareListing/index',
  2748. component: Layout,
  2749. hidden: true,
  2750. children: [{
  2751. path: '/tirePartsMall/basicData/shareListing/index',
  2752. name: '共享上架',
  2753. meta: {
  2754. i18n: '/tirePartsMall/basicData/shareListing/index',
  2755. keepAlive: true,
  2756. },
  2757. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/shareListing/index')
  2758. }]
  2759. },
  2760. {
  2761. path: '/tirePartsMall/financialManagement/collectionSettlement/index',
  2762. component: Layout,
  2763. hidden: true,
  2764. children: [{
  2765. path: '/tirePartsMall/financialManagement/collectionSettlement/index',
  2766. name: '收款结算(L)',
  2767. meta: {
  2768. i18n: '/tirePartsMall/financialManagement/collectionSettlement/index',
  2769. keepAlive: true,
  2770. },
  2771. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/collectionSettlement/index')
  2772. }]
  2773. },
  2774. {
  2775. path: '/tirePartsMall/financialManagement/collectionSettlement/index',
  2776. component: Layout,
  2777. hidden: true,
  2778. children: [{
  2779. path: '/tirePartsMall/financialManagement/paymentSettlement/index',
  2780. name: '付款结算(L)',
  2781. meta: {
  2782. i18n: '/tirePartsMall/financialManagement/paymentSettlement/index',
  2783. keepAlive: true,
  2784. },
  2785. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/paymentSettlement/index')
  2786. }]
  2787. },
  2788. // 统计销售
  2789. {
  2790. path: '/tirePartsMall/financialManagement/saleDetail/index',
  2791. component: Layout,
  2792. hidden: true,
  2793. children: [{
  2794. path: '/tirePartsMall/financialManagement/saleDetail/index',
  2795. name: '统计销售(L)',
  2796. meta: {
  2797. i18n: '/tirePartsMall/financialManagement/saleDetail/index',
  2798. keepAlive: true,
  2799. },
  2800. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/saleDetail/index')
  2801. }]
  2802. },
  2803. // 统计销售
  2804. {
  2805. path: '/tirePartsMall/financialManagement/purchaseDetail/index',
  2806. component: Layout,
  2807. hidden: true,
  2808. children: [{
  2809. path: '/tirePartsMall/financialManagement/purchaseDetail/index',
  2810. name: '统计采购(L)',
  2811. meta: {
  2812. i18n: '/tirePartsMall/financialManagement/purchaseDetail/index',
  2813. keepAlive: true,
  2814. },
  2815. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/purchaseDetail/index')
  2816. }]
  2817. },
  2818. {
  2819. path: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
  2820. component: Layout,
  2821. hidden: true,
  2822. children: [{
  2823. path: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
  2824. name: '客户往来',
  2825. meta: {
  2826. i18n: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
  2827. keepAlive: true,
  2828. },
  2829. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/customerTransactions/index')
  2830. }]
  2831. },
  2832. {
  2833. path: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
  2834. component: Layout,
  2835. hidden: true,
  2836. children: [{
  2837. path: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
  2838. name: '供应商往来',
  2839. meta: {
  2840. i18n: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
  2841. keepAlive: true,
  2842. },
  2843. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/supplierTransactions/index')
  2844. }]
  2845. },
  2846. {
  2847. path: '/tirePartsMall/activity/index',
  2848. component: Layout,
  2849. hidden: true,
  2850. children: [{
  2851. path: '/tirePartsMall/activity/index',
  2852. name: '活动(L)',
  2853. meta: {
  2854. i18n: '/tirePartsMall/activity/index',
  2855. keepAlive: true,
  2856. },
  2857. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/activity/index')
  2858. }]
  2859. },
  2860. {
  2861. path: '/iosBasicData/SeafreightExportF/bills/index',
  2862. component: Layout,
  2863. hidden: true,
  2864. children: [{
  2865. path: '/iosBasicData/SeafreightExportF/bills/index',
  2866. name: '海运出口(F)',
  2867. meta: {
  2868. i18n: '/iosBasicData/SeafreightExportF/bills/index',
  2869. keepAlive: true,
  2870. },
  2871. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/SeafreightExportF/bills/index.vue')
  2872. }]
  2873. },
  2874. {
  2875. path: '/iosBasicData/OceanFreightImport/bills/index',
  2876. component: Layout,
  2877. hidden: true,
  2878. children: [{
  2879. path: '/iosBasicData/OceanFreightImport/bills/index',
  2880. name: '海运进口(F)',
  2881. meta: {
  2882. i18n: '/iosBasicData/OceanFreightImport/bills/index',
  2883. keepAlive: true,
  2884. },
  2885. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/OceanFreightImport/bills/index.vue')
  2886. }]
  2887. },
  2888. {
  2889. path: '/iosBasicData/AirtransportExport/bills/index',
  2890. component: Layout,
  2891. hidden: true,
  2892. children: [{
  2893. path: '/iosBasicData/AirtransportExport/bills/index',
  2894. name: '空运出口(F)',
  2895. meta: {
  2896. i18n: '/iosBasicData/AirtransportExport/bills/index',
  2897. keepAlive: true,
  2898. },
  2899. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/AirtransportExport/bills/index.vue')
  2900. }]
  2901. },
  2902. {
  2903. path: '/iosBasicData/AirtransportImport/bills/index',
  2904. component: Layout,
  2905. hidden: true,
  2906. children: [{
  2907. path: '/iosBasicData/AirtransportImport/bills/index',
  2908. name: '空运进口(F)',
  2909. meta: {
  2910. i18n: '/iosBasicData/AirtransportImport/bills/index',
  2911. keepAlive: true,
  2912. },
  2913. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/AirtransportImport/bills/index.vue')
  2914. }]
  2915. },
  2916. {
  2917. path: '/iosBasicData/seamends/index',
  2918. component: Layout,
  2919. hidden: true,
  2920. children: [{
  2921. path: '/iosBasicData/seamends/index',
  2922. name: 'SEAMEND',
  2923. meta: {
  2924. i18n: '/iosBasicData/seamends/index',
  2925. keepAlive: true,
  2926. },
  2927. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/seamends/index.vue')
  2928. }]
  2929. },
  2930. {
  2931. path: '/iosBasicData/siamends/index',
  2932. component: Layout,
  2933. hidden: true,
  2934. children: [{
  2935. path: '/iosBasicData/siamends/index',
  2936. name: 'SIAMEND',
  2937. meta: {
  2938. i18n: '/iosBasicData/siamends/index',
  2939. keepAlive: true,
  2940. },
  2941. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/siamends/index.vue')
  2942. }]
  2943. },
  2944. {
  2945. path: '/iosBasicData/aeamends/index',
  2946. component: Layout,
  2947. hidden: true,
  2948. children: [{
  2949. path: '/iosBasicData/aeamends/index',
  2950. name: 'AEAMEND',
  2951. meta: {
  2952. i18n: '/iosBasicData/aeamends/index',
  2953. keepAlive: true,
  2954. },
  2955. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/aeamends/index.vue')
  2956. }]
  2957. },
  2958. {
  2959. path: '/iosBasicData/aiamends/index',
  2960. component: Layout,
  2961. hidden: true,
  2962. children: [{
  2963. path: '/iosBasicData/aiamends/index',
  2964. name: 'AIAMEND',
  2965. meta: {
  2966. i18n: '/iosBasicData/aiamends/index',
  2967. keepAlive: true,
  2968. },
  2969. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/aiamends/index.vue')
  2970. }]
  2971. },
  2972. {
  2973. path: '/billM/billingCenter/index',
  2974. component: Layout,
  2975. hidden: true,
  2976. children: [{
  2977. path: '/billM/billingCenter/index',
  2978. name: '账单中心',
  2979. meta: {
  2980. i18n: '/billM/billingCenter/index',
  2981. keepAlive: true,
  2982. },
  2983. component: () => import( /* webpackChunkName: "views" */ '@/views/billM/billingCenter/index.vue')
  2984. }]
  2985. },
  2986. {
  2987. path: '/iosBasicData/losbfeestemplate/index',
  2988. component: Layout,
  2989. hidden: true,
  2990. children: [{
  2991. path: '/iosBasicData/losbfeestemplate/index',
  2992. name: '费用模板(F)',
  2993. meta: {
  2994. i18n: '/iosBasicData/losbfeestemplate/index',
  2995. keepAlive: true,
  2996. },
  2997. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/losbfeestemplate/index.vue')
  2998. }]
  2999. },
  3000. {
  3001. path: '/iosBasicData/VoucherTemplates/index',
  3002. component: Layout,
  3003. hidden: true,
  3004. children: [{
  3005. path: '/iosBasicData/VoucherTemplates/index',
  3006. name: '凭证模板(F)',
  3007. meta: {
  3008. i18n: '/iosBasicData/VoucherTemplates/index',
  3009. keepAlive: true,
  3010. },
  3011. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/VoucherTemplates/index.vue')
  3012. }]
  3013. },
  3014. {
  3015. path: '/iosBasicData/psBcorps/index',
  3016. component: Layout,
  3017. hidden: true,
  3018. children: [{
  3019. path: '/iosBasicData/psBcorps/index',
  3020. name: 'PS客户',
  3021. meta: {
  3022. i18n: '/iosBasicData/psBcorps/index',
  3023. keepAlive: true,
  3024. },
  3025. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/psBcorps/index.vue')
  3026. }]
  3027. },
  3028. {
  3029. path: '/iosBasicData/bcorps/index',
  3030. component: Layout,
  3031. hidden: true,
  3032. children: [{
  3033. path: '/iosBasicData/bcorps/index',
  3034. name: '往来单位(F)',
  3035. meta: {
  3036. i18n: '/iosBasicData/bcorps/index',
  3037. keepAlive: true,
  3038. },
  3039. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/bcorps/index.vue')
  3040. }]
  3041. },
  3042. {
  3043. path: '/iosBasicData/rateManagement/index',
  3044. component: Layout,
  3045. hidden: true,
  3046. children: [{
  3047. path: '/iosBasicData/rateManagement/index',
  3048. name: '币别及汇率(F)',
  3049. meta: {
  3050. i18n: '/iosBasicData/rateManagement/index',
  3051. keepAlive: true,
  3052. },
  3053. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/rateManagement/index.vue')
  3054. }]
  3055. },
  3056. {
  3057. path: '/iosBasicData/baccitemstype/index',
  3058. component: Layout,
  3059. hidden: true,
  3060. children: [{
  3061. path: '/iosBasicData/baccitemstype/index',
  3062. name: '核算项目(F)',
  3063. meta: {
  3064. i18n: '/iosBasicData/baccitemstype/index',
  3065. keepAlive: true,
  3066. },
  3067. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/baccitemstype/index.vue')
  3068. }]
  3069. },
  3070. {
  3071. path: '/financialManagementF/agreementprice/index',
  3072. component: Layout,
  3073. hidden: true,
  3074. children: [{
  3075. path: '/financialManagementF/agreementprice/index',
  3076. name: '协议管理(F)',
  3077. meta: {
  3078. i18n: '/financialManagementF/agreementprice/index',
  3079. keepAlive: true,
  3080. },
  3081. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagementF/agreementprice/index.vue')
  3082. }]
  3083. },
  3084. // 审批详情
  3085. {
  3086. path: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
  3087. component: Layout,
  3088. hidden: true,
  3089. children: [{
  3090. path: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
  3091. name: '审批详情(F)',
  3092. meta: {
  3093. i18n: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
  3094. keepAlive: true,
  3095. },
  3096. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/SeafreightExportF/bills/approvalDetails.vue')
  3097. }]
  3098. },
  3099. // 对账中心(F)
  3100. {
  3101. path: '/iosBasicData/finstlbills/index',
  3102. component: Layout,
  3103. hidden: true,
  3104. children: [{
  3105. path: '/iosBasicData/finstlbills/index',
  3106. name: '对账中心(F)',
  3107. meta: {
  3108. i18n: '/iosBasicData/finstlbills/index',
  3109. keepAlive: true,
  3110. },
  3111. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/finstlbills/index.vue')
  3112. }]
  3113. },
  3114. // 付费申请(F)
  3115. {
  3116. path: '/iosBasicData/PaymentApplication/index',
  3117. component: Layout,
  3118. hidden: true,
  3119. children: [{
  3120. path: '/iosBasicData/PaymentApplication/index',
  3121. name: '付费申请(F)',
  3122. meta: {
  3123. i18n: '/iosBasicData/PaymentApplication/index',
  3124. keepAlive: true,
  3125. },
  3126. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/PaymentApplication/index.vue')
  3127. }]
  3128. },
  3129. {
  3130. path: '/iosBasicData/PaymentSettlement/index',
  3131. component: Layout,
  3132. hidden: true,
  3133. children: [{
  3134. path: '/iosBasicData/PaymentSettlement/index',
  3135. name: '付款结算(F)',
  3136. meta: {
  3137. i18n: '/iosBasicData/PaymentApplication/index',
  3138. keepAlive: true,
  3139. },
  3140. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/PaymentSettlement/index.vue')
  3141. }]
  3142. },
  3143. // 收款结算(F)
  3144. {
  3145. path: '/iosBasicData/CollectionSettlement/index',
  3146. component: Layout,
  3147. hidden: true,
  3148. children: [{
  3149. path: '/iosBasicData/CollectionSettlement/index',
  3150. name: '收款结算(F)',
  3151. meta: {
  3152. i18n: '/iosBasicData/CollectionSettlement/index',
  3153. keepAlive: true,
  3154. },
  3155. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/CollectionSettlement/index.vue')
  3156. }]
  3157. },
  3158. // 发票中心(F)
  3159. {
  3160. path: '/iosBasicData/fininvoicesApplyfor/index',
  3161. component: Layout,
  3162. hidden: true,
  3163. children: [{
  3164. path: '/iosBasicData/fininvoicesApplyfor/index',
  3165. name: '发票申请(F)',
  3166. meta: {
  3167. i18n: '/iosBasicData/fininvoicesApplyfor/index',
  3168. keepAlive: true,
  3169. },
  3170. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fininvoicesApplyfor/index.vue')
  3171. }]
  3172. },
  3173. {
  3174. path: '/iosBasicData/fininvoices/index',
  3175. component: Layout,
  3176. hidden: true,
  3177. children: [{
  3178. path: '/iosBasicData/fininvoices/index',
  3179. name: '进项发票(F)',
  3180. meta: {
  3181. i18n: '/iosBasicData/fininvoices/index',
  3182. keepAlive: true,
  3183. },
  3184. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fininvoices/index.vue')
  3185. }]
  3186. },
  3187. {
  3188. path: '/iosBasicData/fininvoicesOutput/index',
  3189. component: Layout,
  3190. hidden: true,
  3191. children: [{
  3192. path: '/iosBasicData/fininvoicesOutput/index',
  3193. name: '销项发票(F)',
  3194. meta: {
  3195. i18n: '/iosBasicData/fininvoicesOutput/index',
  3196. keepAlive: true,
  3197. },
  3198. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fininvoicesOutput/index.vue')
  3199. }]
  3200. },
  3201. // 调拨(L)
  3202. {
  3203. path: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
  3204. component: Layout,
  3205. hidden: true,
  3206. children: [{
  3207. path: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
  3208. name: '调拨(L)',
  3209. meta: {
  3210. i18n: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
  3211. keepAlive: true,
  3212. },
  3213. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundWorkOrderL/index')
  3214. }]
  3215. },
  3216. // 科目管理(F)
  3217. {
  3218. path: '/iosBasicData/accounts/index',
  3219. component: Layout,
  3220. hidden: true,
  3221. children: [{
  3222. path: '/iosBasicData/accounts/index',
  3223. name: '科目管理(F)',
  3224. meta: {
  3225. i18n: '/iosBasicData/accounts/index',
  3226. keepAlive: true,
  3227. },
  3228. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/accounts/index')
  3229. }]
  3230. },
  3231. // 结算中心(F)
  3232. {
  3233. path: '/iosBasicData/ComputationCenter/index',
  3234. component: Layout,
  3235. hidden: true,
  3236. children: [{
  3237. path: '/iosBasicData/ComputationCenter/index',
  3238. name: '结算中心(F)',
  3239. meta: {
  3240. i18n: '/iosBasicData/ComputationCenter/index',
  3241. keepAlive: true,
  3242. },
  3243. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/ComputationCenter/index')
  3244. }]
  3245. },
  3246. // 收付汇总
  3247. {
  3248. path: '/iosBasicData/paymentSummary/index',
  3249. component: Layout,
  3250. hidden: true,
  3251. children: [{
  3252. path: '/iosBasicData/paymentSummary/index',
  3253. name: '收付汇总(F)',
  3254. meta: {
  3255. i18n: '/iosBasicData/paymentSummary/index',
  3256. keepAlive: true,
  3257. },
  3258. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/paymentSummary/index')
  3259. }]
  3260. },
  3261. // 收付明细
  3262. {
  3263. path: '/iosBasicData/paymentDetail/index',
  3264. component: Layout,
  3265. hidden: true,
  3266. children: [{
  3267. path: '/iosBasicData/paymentDetail/index',
  3268. name: '收付明细(F)',
  3269. meta: {
  3270. i18n: '/iosBasicData/paymentDetail/index',
  3271. keepAlive: true,
  3272. },
  3273. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/paymentDetail/index')
  3274. }]
  3275. },
  3276. // 未收付明细(F)
  3277. {
  3278. path: '/iosBasicData/UnpaidPaymentsDetails/index',
  3279. component: Layout,
  3280. hidden: true,
  3281. children: [{
  3282. path: '/iosBasicData/UnpaidPaymentsDetails/index',
  3283. name: '未收付明细(F)',
  3284. meta: {
  3285. i18n: '/iosBasicData/UnpaidPaymentsDetails/index',
  3286. keepAlive: true,
  3287. },
  3288. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/UnpaidPaymentsDetails/index')
  3289. }]
  3290. },
  3291. // 账龄分析(F)
  3292. {
  3293. path: '/iosBasicData/agingAnalysis/index',
  3294. component: Layout,
  3295. hidden: true,
  3296. children: [{
  3297. path: '/iosBasicData/agingAnalysis/index',
  3298. name: '账龄分析(F)',
  3299. meta: {
  3300. i18n: '/iosBasicData/agingAnalysis/index',
  3301. keepAlive: true,
  3302. },
  3303. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/agingAnalysis/index')
  3304. }]
  3305. },
  3306. // 业务利润(F)
  3307. {
  3308. path: '/iosBasicData/financeProfit/index',
  3309. component: Layout,
  3310. hidden: true,
  3311. children: [{
  3312. path: '/iosBasicData/financeProfit/index',
  3313. name: '业务利润(F)',
  3314. meta: {
  3315. i18n: '/iosBasicData/financeProfit/index',
  3316. keepAlive: true,
  3317. },
  3318. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/financeProfit/index')
  3319. }]
  3320. },
  3321. // 海运出口报关
  3322. {
  3323. path: '/iosBasicData/reportClose/SEreportClose/index',
  3324. component: Layout,
  3325. hidden: true,
  3326. children: [{
  3327. path: '/iosBasicData/reportClose/SEreportClose/index',
  3328. name: '海运出口报关',
  3329. meta: {
  3330. i18n: '/iosBasicData/reportClose/SEreportClose/index',
  3331. keepAlive: true,
  3332. },
  3333. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/reportClose/SEreportClose/index')
  3334. }]
  3335. },
  3336. // 海运进口报关
  3337. {
  3338. path: '/iosBasicData/reportClose/SIreportClose/index',
  3339. component: Layout,
  3340. hidden: true,
  3341. children: [{
  3342. path: '/iosBasicData/reportClose/SIreportClose/index',
  3343. name: '海运进口报关',
  3344. meta: {
  3345. i18n: '/iosBasicData/reportClose/SIreportClose/index',
  3346. keepAlive: true,
  3347. },
  3348. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/reportClose/SIreportClose/index')
  3349. }]
  3350. },
  3351. // 空运出口报关
  3352. {
  3353. path: '/iosBasicData/reportClose/AEreportClose/index',
  3354. component: Layout,
  3355. hidden: true,
  3356. children: [{
  3357. path: '/iosBasicData/reportClose/AEreportClose/index',
  3358. name: '空运出口报关',
  3359. meta: {
  3360. i18n: '/iosBasicData/reportClose/AEreportClose/index',
  3361. keepAlive: true,
  3362. },
  3363. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/reportClose/AEreportClose/index')
  3364. }]
  3365. },
  3366. // 空运进口报关
  3367. {
  3368. path: '/iosBasicData/reportClose/AIreportClose/index',
  3369. component: Layout,
  3370. hidden: true,
  3371. children: [{
  3372. path: '/iosBasicData/reportClose/AIreportClose/index',
  3373. name: '空运进口报关',
  3374. meta: {
  3375. i18n: '/iosBasicData/reportClose/AIreportClose/index',
  3376. keepAlive: true,
  3377. },
  3378. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/reportClose/AIreportClose/index')
  3379. }]
  3380. },
  3381. // 空运进口报关
  3382. {
  3383. path: '/iosBasicData/finvouchers/index',
  3384. component: Layout,
  3385. hidden: true,
  3386. children: [{
  3387. path: '/iosBasicData/finvouchers/index',
  3388. name: '财务凭证(F)',
  3389. meta: {
  3390. i18n: '/iosBasicData/finvouchers/index',
  3391. keepAlive: true,
  3392. },
  3393. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/finvouchers/index')
  3394. }]
  3395. },
  3396. // 复制
  3397. {
  3398. path: '/system/copy/index',
  3399. component: Layout,
  3400. hidden: true,
  3401. children: [{
  3402. path: '/system/copy/index',
  3403. name: '复制',
  3404. meta: {
  3405. i18n: '/system/copy/index',
  3406. keepAlive: true,
  3407. },
  3408. component: () => import( /* webpackChunkName: "views" */ '@/views/system/copy/index')
  3409. }]
  3410. },
  3411. // 工作申请
  3412. {
  3413. path: '/iosBasicData/release/jobApplication/index',
  3414. component: Layout,
  3415. hidden: true,
  3416. children: [{
  3417. path: '/iosBasicData/release/jobApplication/index',
  3418. name: '工作申请',
  3419. meta: {
  3420. i18n: '/iosBasicData/release/jobApplication/index',
  3421. keepAlive: true,
  3422. },
  3423. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/release/jobApplication/index')
  3424. }]
  3425. },
  3426. // 调度管理
  3427. {
  3428. path: '/iosBasicData/release/schedulingManagement/index',
  3429. component: Layout,
  3430. hidden: true,
  3431. children: [{
  3432. path: '/iosBasicData/release/schedulingManagement/index',
  3433. name: '调度管理',
  3434. meta: {
  3435. i18n: '/iosBasicData/release/schedulingManagement/index',
  3436. keepAlive: true,
  3437. },
  3438. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/release/schedulingManagement/index')
  3439. }]
  3440. },
  3441. // 放单管理
  3442. {
  3443. path: '/iosBasicData/release/releaseManagement/index',
  3444. component: Layout,
  3445. hidden: true,
  3446. children: [{
  3447. path: '/iosBasicData/release/releaseManagement/index',
  3448. name: '放单管理',
  3449. meta: {
  3450. i18n: '/iosBasicData/release/releaseManagement/index',
  3451. keepAlive: true,
  3452. },
  3453. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/release/releaseManagement/index')
  3454. }]
  3455. },
  3456. // 期间管理
  3457. {
  3458. path: '/iosBasicData/periodManagement/index',
  3459. component: Layout,
  3460. hidden: true,
  3461. children: [{
  3462. path: '/iosBasicData/periodManagement/index',
  3463. name: '期间管理(F)',
  3464. meta: {
  3465. i18n: '/iosBasicData/periodManagement/index',
  3466. keepAlive: true,
  3467. },
  3468. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/periodManagement/index')
  3469. }]
  3470. },
  3471. // 总分类账
  3472. {
  3473. path: '/iosBasicData/fingenleg/index',
  3474. component: Layout,
  3475. hidden: true,
  3476. children: [{
  3477. path: '/iosBasicData/fingenleg/index',
  3478. name: '总分类账(F)',
  3479. meta: {
  3480. i18n: '/iosBasicData/fingenleg/index',
  3481. keepAlive: true,
  3482. },
  3483. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fingenleg/index')
  3484. }]
  3485. },
  3486. // 核算项目明细账
  3487. {
  3488. path: '/iosBasicData/fingenlegcalc/index',
  3489. component: Layout,
  3490. hidden: true,
  3491. children: [{
  3492. path: '/iosBasicData/fingenlegcalc/index',
  3493. name: '核算项目明细账(F)',
  3494. meta: {
  3495. i18n: '/iosBasicData/fingenlegcalc/index',
  3496. keepAlive: true,
  3497. },
  3498. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fingenlegcalc/index')
  3499. }]
  3500. },
  3501. // 明细账
  3502. {
  3503. path: '/iosBasicData/accountsDetails/index',
  3504. component: Layout,
  3505. hidden: true,
  3506. children: [{
  3507. path: '/iosBasicData/accountsDetails/index',
  3508. name: '明细账(F)',
  3509. meta: {
  3510. i18n: '/iosBasicData/accountsDetails/index',
  3511. keepAlive: true,
  3512. },
  3513. component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/accountsDetails/index')
  3514. }]
  3515. },
  3516. // 销售分析
  3517. {
  3518. path: '/tirePartsMall/financialManagement/salesAnalysis/index',
  3519. component: Layout,
  3520. hidden: true,
  3521. children: [{
  3522. path: '/tirePartsMall/financialManagement/salesAnalysis/index',
  3523. name: '销售分析(L)',
  3524. meta: {
  3525. i18n: '/tirePartsMall/financialManagement/salesAnalysis/index',
  3526. keepAlive: true,
  3527. },
  3528. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/salesAnalysis/index')
  3529. }]
  3530. },
  3531. {
  3532. path: '/tirePartsMall/basicData/listingManagement/detail',
  3533. component: Layout,
  3534. hidden: true,
  3535. children: [{
  3536. path: '/tirePartsMall/basicData/listingManagement/detail',
  3537. name: '销售明细(L)',
  3538. meta: {
  3539. i18n: '/tirePartsMall/basicData/listingManagement/detail',
  3540. keepAlive: true,
  3541. },
  3542. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/listingManagement/detail')
  3543. }]
  3544. },
  3545. {
  3546. path: '/tirePartsMall/statisticAnalysis/generalLedgerReceivable/index',
  3547. component: Layout,
  3548. hidden: true,
  3549. children: [{
  3550. path: '/tirePartsMall/statisticAnalysis/generalLedgerReceivable/index',
  3551. name: '应收总账(月)',
  3552. meta: {
  3553. i18n: '/tirePartsMall/statisticAnalysis/generalLedgerReceivable/index',
  3554. keepAlive: true,
  3555. },
  3556. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/generalLedgerReceivable/index')
  3557. }]
  3558. },
  3559. {
  3560. path: '/tirePartsMall/statisticAnalysis/generalLedgerPayable/index',
  3561. component: Layout,
  3562. hidden: true,
  3563. children: [{
  3564. path: '/tirePartsMall/statisticAnalysis/generalLedgerPayable/index',
  3565. name: '应付总账(月)',
  3566. meta: {
  3567. i18n: '/tirePartsMall/statisticAnalysis/generalLedgerPayable/index',
  3568. keepAlive: true,
  3569. },
  3570. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/generalLedgerPayable/index')
  3571. }]
  3572. },
  3573. {
  3574. path: '/tirePartsMall/statisticAnalysis/profitLedger/index',
  3575. component: Layout,
  3576. hidden: true,
  3577. children: [{
  3578. path: '/tirePartsMall/statisticAnalysis/profitLedger/index',
  3579. name: '利润总账(月)',
  3580. meta: {
  3581. i18n: '/tirePartsMall/statisticAnalysis/profitLedger/index',
  3582. keepAlive: true,
  3583. },
  3584. component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/profitLedger/index')
  3585. }]
  3586. },
  3587. {
  3588. path: '/iosBasicData/decisionAnalysis/index',
  3589. component: Layout,
  3590. hidden: true,
  3591. children: [{
  3592. path: '/iosBasicData/decisionAnalysis/index',
  3593. name: '海运箱量利润统计',
  3594. meta: {
  3595. i18n: '/iosBasicData/decisionAnalysis/index',
  3596. keepAlive: true,
  3597. },
  3598. component: () => import( /* webpackChunkName: "views" */ '@/views//iosBasicData/decisionAnalysis/index')
  3599. }]
  3600. },
  3601. {
  3602. path: '/tradeAgency/tradeAgency/index',
  3603. component: Layout,
  3604. hidden: true,
  3605. children: [{
  3606. path: '/tradeAgency/tradeAgency/index',
  3607. name: '贸易代理(T)',
  3608. meta: {
  3609. i18n: '/tradeAgency/tradeAgency/index',
  3610. keepAlive: true,
  3611. },
  3612. component: () => import( /* webpackChunkName: "views" */ '@/views/tradeAgency/tradeAgency/index')
  3613. }]
  3614. },
  3615. {
  3616. path: '/tradeAgency/exchangePurchasing/index',
  3617. component: Layout,
  3618. hidden: true,
  3619. children: [{
  3620. path: '/tradeAgency/exchangePurchasing/index',
  3621. name: '购汇付汇',
  3622. meta: {
  3623. i18n: '/tradeAgency/exchangePurchasing/index',
  3624. keepAlive: true,
  3625. },
  3626. component: () => import( /* webpackChunkName: "views" */ '@/views/tradeAgency/exchangePurchasing/index')
  3627. }]
  3628. },
  3629. ]