123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630 |
- import Layout from '@/page/index/'
- export default [{
- path: '/wel',
- component: Layout,
- redirect: '/wel/index',
- children: [{
- path: 'index',
- name: '首页',
- meta: {
- i18n: 'dashboard',
- keepAlive: true,
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/wel/index')
- }, {
- path: 'dashboard',
- name: '控制台',
- meta: {
- i18n: 'dashboard',
- menu: false,
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/wel/dashboard')
- }]
- }, {
- path: '/test',
- component: Layout,
- redirect: '/test/index',
- children: [{
- path: 'index',
- name: '测试页',
- meta: {
- i18n: 'test'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/test')
- }]
- }, {
- path: '/dict-horizontal',
- component: Layout,
- redirect: '/dict-horizontal/index',
- children: [{
- path: 'index',
- name: '字典管理',
- meta: {
- i18n: 'dict'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-horizontal')
- }]
- }, {
- path: '/dict-vertical',
- component: Layout,
- redirect: '/dict-vertical/index',
- children: [{
- path: 'index',
- name: '字典管理',
- meta: {
- i18n: 'dict'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-vertical')
- }]
- }, {
- path: '/info',
- component: Layout,
- redirect: '/info/index',
- children: [{
- path: 'index',
- name: '个人信息',
- meta: {
- i18n: 'info'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/system/userinfo')
- }]
- }, {
- path: '/basicData/customerInformation/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerInformation/detailsPageEdit',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/detailsPageEdit')
- }]
- },
- {
- path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
- meta: {
- i18n: 'detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/detailsPageEdit')
- }]
- },
- {
- path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
- meta: {
- i18n: 'detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/detailsPageEdit')
- }]
- },
- //商品false
- {
- path: '/commodityType_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/commodityType_detailsPageEdit',
- meta: {
- i18n: 'commodityType_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/detailsPageEdit')
- }]
- },
- //商城管理
- //商品列表详情页
- {
- path: '/productList_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/productList_detailsPageEdit',
- meta: {
- i18n: 'productList_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/mallManagement/commodity/productList/detailsPageEdit')
- }]
- },
- //产品
- {
- path: '/basicData/productInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/productInformation/index',
- name: '产品信息',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/productInformation/index')
- }]
- },
- //客户分类
- {
- path: '/basicData/customerCategory/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerCategory/index',
- name: '客户分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerCategory/index')
- }]
- },
- {
- path: '/report/reportlist',
- component: Layout,
- hidden: true,
- children: [{
- path: '/report/reportlist',
- name: '报表列表',
- meta: {
- keepAlive: true,
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/report/reportlist')
- }]
- },
- //客户资料
- {
- path: '/basicData/customerInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerInformation/index',
- name: '客户资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/index')
- }]
- }, //车队资料
- {
- path: '/basicData/fleetInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/fleetInformation/index',
- name: '车队资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/fleetInformation/index')
- }]
- },
- //供应商分类
- {
- path: '/basicData/customerManagement/supplierType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/supplierType/index',
- name: '供应商分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierType/index')
- }]
- },
- //供应商资料
- {
- path: '/basicData/customerManagement/supplierMaterial/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/supplierMaterial/index',
- name: '供应商资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/index')
- }]
- },
- //公司分类
- {
- path: '/basicData/customerManagement/companyType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/companyType/index',
- name: '所属公司分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyType/index')
- }]
- },
- //公司资料
- {
- path: '/basicData/customerManagement/companyMaterial/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/companyMaterial/index',
- name: '所属公司资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/index')
- }]
- },
- //商品分类
- {
- path: '/basicData/commodityCategory/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/commodityCategory/index',
- name: '商品分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityCategory/index')
- }]
- },
- //商品分类
- {
- path: '/basicData/commodityType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/commodityType/index',
- name: '商品信息',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/index')
- }]
- },
- //费用分类
- {
- path: '/basicData/basicFeesType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/basicFeesType/index',
- name: '费用分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicFeesType/index')
- }]
- },
- //费用详情
- {
- path: '/basicData/basicFeesDesc/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/basicFeesDesc/index',
- name: '费用详情',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicFeesDesc/index')
- }]
- },
- //仓库分类
- {
- path: '/basicData/basicStorageType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/basicStorageType/index',
- name: '仓库分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicStorageType/index')
- }]
- },
- //库区明细
- {
- path: '/basicData/basicStorageDesc/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/basicStorageDesc/index',
- name: '库区明细',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicStorageDesc/index')
- }]
- },
- //箱分类
- {
- path: '/basicData/container/type',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/container/type',
- name: '箱分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/type')
- }]
- },
- //集装箱
- {
- path: '/basicData/container/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/container/index',
- name: '集装箱',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/index')
- }]
- },
- //港口分类
- {
- path: '/basicData/portinformation/type',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/portinformation/type',
- name: '港口分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/portinformation/type')
- }]
- },
- //港口资料
- {
- path: '/basicData/portinformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/portinformation/index',
- name: '港口资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/portinformation/index')
- }]
- },
- //汇率管理
- {
- path: '/basicData/rateManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/rateManagement/index',
- name: '汇率管理',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/rateManagement/index')
- }]
- },
- //产品价格
- {
- path: '/maintenance/priceLibrary/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/priceLibrary/index',
- name: '产品价格',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceLibrary/index')
- }]
- },
- //产品价格
- {
- path: '/maintenance/landFreight/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/landFreight/index',
- name: '陆运费',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/landFreight/index')
- }]
- },
- //产品价格
- {
- path: '/maintenance/portSurcharge/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/portSurcharge/index',
- name: '海运费',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/portSurcharge/index')
- }]
- },
- //销售详情页
- {
- path: '/businessManagement/salesOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/salesOrder/index',
- name: '销售订单(N)',
- meta: {
- i18n: 'businessManagement/salesOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/salesOrder/index')
- }]
- },
- {
- path: '/businessManagement/proxyOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/proxyOrder/index',
- name: '代理订单(N)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/proxyOrder/index')
- }]
- },
- {
- path: '/statisticAnalysis/packFeeRecon/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/packFeeRecon/index',
- name: '包装费用对账(N)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/packFeeRecon/index')
- }]
- },
- {
- path: '/statisticAnalysis/purchaseReconciliation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/purchaseReconciliation/index',
- name: '品牌采购对账(N)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/purchaseReconciliation/index')
- }]
- },
- {
- path: '/statisticAnalysis/salesProfitN/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesProfitN/index',
- name: '销售利润(N)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfitN/index')
- }]
- },
- //发货通知详情页
- {
- path: '/businessManagement/deliveryNotice/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/deliveryNotice/index',
- name: '客户收货(N)',
- meta: {
- i18n: 'businessManagement/deliveryNotice/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/deliveryNotice/index')
- }]
- },
- //价格管理详情页
- {
- path: '/priceManagement_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/priceManagement_detailsPageEdit',
- meta: {
- i18n: 'priceManagement_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/detailsPageEdit')
- }]
- },
- //销售政策详情页
- {
- path: '/maintenance/salesPolicy/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/salesPolicy/index',
- name: '销售政策',
- meta: {
- i18n: 'maintenance/salesPolicy/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/salesPolicy/index')
- }]
- },
- //陆运委托
- {
- path: '/landTransportation/placeAnOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/placeAnOrder/index',
- name: '委托',
- meta: {
- i18n: '/landTransportation/placeAnOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
- }]
- },
- //秒杀详情页
- {
- path: '/panicBuyingInformation_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/panicBuyingInformation_detailsPageEdit',
- meta: {
- i18n: 'panicBuyingInformation_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/panicBuyingInformation/detailsPageEdit')
- }]
- },
- //上架商品详情页
- {
- path: '/goodsOnTheShelves_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/goodsOnTheShelves_detailsPageEdit',
- meta: {
- i18n: 'goodsOnTheShelves_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/goodsOnTheShelves/detailsPageEdit')
- }]
- },
- //收货单详情页
- {
- path: '/businessManagement/receipt/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/receipt/index',
- name: '工厂发货(N)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/receipt/index')
- }]
- },
- //采购订单详情页
- {
- path: '/businessManagement/purchaseOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/purchaseOrder/index',
- name: '采购订单(N)',
- meta: {
- i18n: 'businessManagement/purchaseOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/purchaseOrder/index')
- }]
- },
- // 采购合同详情页
- {
- path: '/purchase/contract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchase/contract/index',
- name: '采购订单(I)',
- meta: {
- i18n: '/purchase/contract/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/contract/index')
- }]
- },
- // 销售合同详情页
- {
- path: '/salesManagement/salesContract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salesManagement/salesContract/index',
- name: '销售订单(I)',
- meta: {
- i18n: '/salesManagement/salesContract/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salesManagement/salesContract/index')
- }]
- },
- // 进口 收货单详情页
- {
- path: '/importTrade/receipt/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/importTrade/receipt/index',
- name: '收货单(I)',
- meta: {
- i18n: '/importTrade/receipt/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/receipt/index')
- }]
- },
- // 进口 发货单详情页
- {
- path: '/importTrade/invoice/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/importTrade/invoice/index',
- name: '发货单(I)',
- meta: {
- i18n: 'importTrade/invoice/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/index')
- }]
- },
- {
- path: '/importTrade/receiptSettle/receiptSettle',
- component: Layout,
- hidden: true,
- children: [{
- path: '/importTrade/receiptSettle/receiptSettle',
- name: '收款合同',
- meta: {
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/receiptSettle/receiptSettle')
- }]
- },
- {
- path: '/financialManagement/compareBill/receiptSettle',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/compareBill/receiptSettle',
- name: '对账管理',
- meta: {
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/compareBill/receiptSettle')
- }]
- },
- // 出口 客户询价
- {
- path: '/exportTrade/customerInquiry/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/customerInquiry/index',
- name: '报价(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/customerInquiry/index')
- }]
- },
- // 出口 采购询价
- {
- path: '/exportTrade/purchaseInquiry/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/purchaseInquiry/index',
- name: '询价(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseInquiry/index')
- }]
- },
- // 出口 船务询价
- {
- path: '/exportTrade/shippingInquiry/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/shippingInquiry/index',
- name: '船务(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/shippingInquiry/index')
- }]
- },
- // 出口 销售订单
- {
- path: '/exportTrade/salesContract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/salesContract/index',
- name: '销售(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/salesContract/index')
- }]
- },
- // 出口 电商备货
- {
- path: '/exportTrade/EcommerceStocking/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/EcommerceStocking/index',
- name: '电商备货(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/EcommerceStocking/index')
- }]
- },
- // 出口 采购订单
- {
- path: '/exportTrade/purchaseContract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/purchaseContract/index',
- name: '采购(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseContract/index')
- }]
- },
- // 进口 发货单详情页
- {
- path: '/importInvoice_detailsPage',
- component: Layout,
- hidden: true,
- children: [{
- path: '/importInvoice_detailsPage',
- name: '发货单',
- meta: {
- i18n: 'importInvoice_detailsPage',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/detailsPageEdit')
- }]
- },
- // 出口 收货单
- {
- path: '/exportTrade/receipt/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/receipt/index',
- name: "收货(E)",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/receipt/index')
- }]
- },
- // 出口 发货单详情页
- {
- path: '/exportTrade/invoice/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/invoice/index',
- name: "跟单(E)",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/invoice/index')
- }]
- },
- // 主营项目
- {
- path: '/workManagement/main-items/list',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/main-items/list',
- name: "主营业务",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/main-items/list')
- }]
- },
- // 统计列表
- {
- path: '/workManagement/receipt/statisticalList',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/receipt/statisticalList',
- name: "统计列表",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/statisticalList')
- }]
- },
- // 业绩分析
- {
- path: '/workManagement/performanceAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/performanceAnalysis/index',
- name: "业绩分析",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/performanceAnalysis/index')
- }]
- },
- // 结算详情页
- {
- path: '/workManagement/receipt/settleAccounts',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/receipt/settleAccounts',
- name: "结算",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/settleAccounts')
- }]
- },
- // 付费申请
- {
- path: '/financialManagement/paymentRequest/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/paymentRequest/index',
- name: "付费申请",
- meta: {
- i18n: '/financialManagement/paymentRequest/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentRequest/index')
- }]
- },
- // 付款结算
- {
- path: '/financialManagement/paymentSettle/paymentSettle',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/paymentSettle/paymentSettle',
- name: "付款结算",
- meta: {
- i18n: '/financialManagement/paymentSettle/paymentSettle',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettle/paymentSettle')
- }]
- },
- //收款结算
- {
- path: '/financialManagement/receiptSettle/receiptSettle',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/receiptSettle/receiptSettle',
- name: "收款结算",
- meta: {
- i18n: '/financialManagement/receiptSettle/receiptSettle',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/receiptSettle/receiptSettle')
- }]
- },
- // 付款结算(Z)
- {
- path: '/financialManagement/paymentSettlement/paymentSettle',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/paymentSettlement/paymentSettle',
- name: "付款结算(Z)",
- meta: {
- i18n: '/financialManagement/paymentSettlement/paymentSettle',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettlement/paymentSettle')
- }]
- },
- //收款结算(Z)
- {
- path: '/financialManagement/collectionSettlement/receiptSettle',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/collectionSettlement/receiptSettle',
- name: "收款结算(Z)",
- meta: {
- i18n: '/financialManagement/collectionSettlement/receiptSettle',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/collectionSettlement/receiptSettle')
- }]
- },
- //审批数据
- {
- path: '/approveData/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/approveData/index',
- name: "审批数据",
- meta: {
- i18n: '/approveData/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/approveData/index')
- }]
- },
- // 账单明细
- {
- path: '/bill_details',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/billDetails/billDetails',
- name: "账单明细",
- meta: {
- i18n: '/financialManagement/billDetails/billDetails',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/billDetails/billDetails')
- }]
- },
- //销项发票
- {
- path: '/financialManagement/outputInvoice/outputInvoice',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/outputInvoice/outputInvoice',
- name: "销项发票",
- meta: {
- i18n: '/financialManagement/outputInvoice/outputInvoice',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/outputInvoice/outputInvoice')
- }]
- },
- //进项发票
- {
- path: '/financialManagement/incomeInvoice/incomeInvoice',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/incomeInvoice/incomeInvoice',
- name: "进项发票",
- meta: {
- i18n: '/financialManagement/incomeInvoice/incomeInvoice',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/incomeInvoice/incomeInvoice')
- }]
- },
- //进口库存账
- {
- path: '/purchase/stockBill/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchase/stockBill/index',
- name: "库存账",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/stockBill/index')
- }]
- },
- {
- path: '/statisticAnalysis/dataDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/dataDetail/index',
- name: "数据明细(N)",
- meta: {
- i18n: '/statisticAnalysis/dataDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
- }]
- },
- {
- path: '/statisticAnalysis/dataDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/dataDetail/index',
- name: "数据明细(N)",
- meta: {
- i18n: '/statisticAnalysis/dataDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
- }]
- },
- {
- path: '/statisticAnalysis/salesmanCommission/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesmanCommission/index',
- name: "销售人员提成(N)",
- meta: {
- i18n: '/statisticAnalysis/salesmanCommission/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanCommission/index')
- }]
- },
- {
- path: '/statisticAnalysis/salesDetails/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesDetails/index',
- name: "销售明细(N)",
- meta: {
- i18n: '/statisticAnalysis/salesDetails/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesDetails/index')
- }]
- },
- //利润分析
- {
- path: '/statisticAnalysis/profit/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/profit/index',
- name: "利润分析",
- meta: {
- i18n: '/statisticAnalysis/profit/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profit/index')
- }]
- },
- //销售利润
- {
- path: '/statisticAnalysis/salesProfit/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesProfit/index',
- name: "销售利润",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfit/index')
- }]
- },
- //利润分析
- {
- path: '/statisticAnalysis/royalty/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/royalty/index',
- name: "提成统计",
- meta: {
- i18n: '/statisticAnalysis/royalty/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/royalty/index')
- }]
- },
- // 订单详情
- {
- path: '/orderManagement/orderDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/orderManagement/orderDetail/index',
- name: "订单详情",
- meta: {
- i18n: '/orderManagement/orderDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/orderManagement/orderDetail/index')
- }]
- },
- {
- path: '/work/process/leave',
- component: Layout,
- redirect: '/work/process/leave/form',
- children: [{
- path: 'form/:processDefinitionId',
- name: '请假流程',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/leave/form')
- }, {
- path: 'handle/:taskId/:processInstanceId/:businessId',
- name: '处理请假流程',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/leave/handle')
- }, {
- path: 'detail/:processInstanceId/:businessId',
- name: '请假流程详情',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
- }]
- }, {
- path: '/work/process/test',
- component: Layout,
- redirect: '/work/process/test/form',
- children: [{
- path: 'form/:processDefinitionId',
- name: '请假流程',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/test/form')
- }, {
- path: 'handle/:taskId/:processInstanceId/:businessId',
- name: '处理请假流程',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/test/handle')
- }, {
- path: 'detail/:processInstanceId/:businessId',
- name: '请假流程详情',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
- }]
- },
- {
- path: '/businessManagement/inventoryAccount/detail',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/inventoryAccount/detail',
- name: '锁定订单明细',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/detail')
- }]
- },
- {
- path: '/basicData/facultyManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/facultyManagement/index',
- name: '教职工管理',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/facultyManagement/index')
- }]
- },
- {
- path: '/basicData/salaryConfiguration/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/salaryConfiguration/index',
- name: '学校标准配置',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/salaryConfiguration/index')
- }]
- },
- {
- path: '/salaryManagement/primarySchool/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salaryManagement/primarySchool/index',
- name: '小学部',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/primarySchool/index')
- }]
- },
- {
- path: '/salaryManagement/juniorhighSchool/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salaryManagement/juniorhighSchool/index',
- name: '初中部',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/juniorhighSchool/index')
- }]
- },
- {
- path: '/salaryManagement/highSchool/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salaryManagement/highSchool/index',
- name: '高中部',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/highSchool/index')
- }]
- },
- {
- path: '/salaryManagement/logisticsDepartment/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salaryManagement/logisticsDepartment/index',
- name: '后勤部',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/logisticsDepartment/index')
- }]
- },
- {
- path: '/system/businessLock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/system/businessLock/index',
- name: '模块加锁',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/system/businessLock/index')
- }]
- },
- {
- path: '/dealer/sales/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/sales/index',
- name: '销售订单(D)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/sales/index')
- }]
- },
- {
- path: '/dealer/purchase/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/purchase/index',
- name: '采购订单(D)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchase/index')
- }]
- },
- //司机
- {
- path: '/basicData/landTransportation/driverInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/landTransportation/driverInformation/index',
- name: '司机',
- meta: {
- i18n: '/basicData/landTransportation/driverInformation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/driverInformation/index')
- }]
- },
- //车辆
- {
- path: '/basicData/landTransportation/vehicleInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/landTransportation/vehicleInformation/index',
- name: '车辆',
- meta: {
- i18n: '/basicData/landTransportation/driverInformation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/vehicleInformation/index')
- }]
- },
- //陆运委托
- {
- path: '/landTransportation/placeAnOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/placeAnOrder/index',
- name: '委托',
- meta: {
- i18n: '/landTransportation/placeAnOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
- }]
- },
- //调度
- {
- path: '/landTransportation/dispatchingCars/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/dispatchingCars/index',
- name: '调度',
- meta: {
- i18n: '/landTransportation/dispatchingCars/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/dispatchingCars/index')
- }]
- },
- //派车
- {
- path: '/landTransportation/motorcadeDriver/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/motorcadeDriver/index',
- name: '派车',
- meta: {
- i18n: '/landTransportation/motorcadeDriver/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/motorcadeDriver/index')
- }]
- },
- //跟踪
- {
- path: '/landTransportation/driver/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/driver/index',
- name: '跟踪',
- meta: {
- i18n: '/landTransportation/driver/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/driver/index')
- }]
- },
- //散货
- {
- path: '/landTransportation/bulkCargo/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/bulkCargo/index',
- name: '散货',
- meta: {
- i18n: '/landTransportation/bulkCargo/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/bulkCargo/index')
- }]
- },
- //陆运台账
- {
- path: '/landTransportation/reportAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/reportAnalysis/index',
- name: '陆运台账',
- meta: {
- i18n: '/landTransportation/reportAnalysis/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/reportAnalysis/index')
- }]
- },
- //散货台账
- {
- path: '/landTransportation/bulkReportAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/bulkReportAnalysis/index',
- name: '散货台账',
- meta: {
- i18n: '/landTransportation/bulkReportAnalysis/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/bulkReportAnalysis/index')
- }]
- },
- //运维-价格管理
- {
- path: '/maintenance/priceManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/priceManagement/index',
- name: '价格管理',
- meta: {
- i18n: '/maintenance/priceManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/index')
- }]
- },
- //经销商库存账
- {
- path: '/dealer/stock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/stock/index',
- name: '库存账(D)',
- meta: {
- i18n: '/dealer/stock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/index')
- }]
- },
- {
- path: '/dealer/stock/detail',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/stock/detail',
- name: '明细账',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/detail')
- }]
- },
- //内贸库存账
- {
- path: '/businessManagement/inventoryAccount/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/inventoryAccount/index',
- name: '库存账(N)',
- meta: {
- i18n: '/businessManagement/inventoryAccount/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/index')
- }]
- },
- //办公用品-采购申请
- {
- path: '/workManagement/purchaseApply/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/purchaseApply/index',
- name: '采购申请',
- meta: {
- i18n: '/workManagement/purchaseApply/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/purchaseApply/index')
- }]
- },
- //办公用品-入库
- {
- path: '/workManagement/warehousing/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/warehousing/index',
- name: '入库',
- meta: {
- i18n: '/workManagement/warehousing/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/warehousing/index')
- }]
- },
- //办公用品-领用
- {
- path: '/workManagement/requisition/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/requisition/index',
- name: '领用',
- meta: {
- i18n: '/workManagement/requisition/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/requisition/index')
- }]
- },
- //销售机会
- {
- path: '/saleLeads/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/saleLeads/index',
- name: '销售机会',
- meta: {
- i18n: '/saleLeads/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/saleLeads/index')
- }]
- },
- //办公用品库存账
- {
- path: '/workManagement/stock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/stock/index',
- name: '库存账(O)',
- meta: {
- i18n: '/workManagement/stock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/stock/index')
- }]
- },
- //报销
- {
- path: '/reimbursement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/reimbursement/index',
- name: '报销',
- meta: {
- i18n: '/reimbursement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/reimbursement/index')
- }]
- },
- //交接单
- {
- path: '/workManagement/handoverSheet/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/handoverSheet/index',
- name: '交接单',
- meta: {
- i18n: '/workManagement/handoverSheet/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/handoverSheet/index')
- }]
- },
- //经销商产品调拨
- {
- path: '/dealer/allocation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/allocation/index',
- name: '产品调拨',
- meta: {
- i18n: '/dealer/allocation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/allocation/index')
- }]
- },
- //数据明细(N)
- {
- path: '/statisticAnalysis/dataDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/dataDetail/index',
- name: '数据明细(N)',
- meta: {
- i18n: '/statisticAnalysis/dataDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
- }]
- },
- //销售对账
- {
- path: '/statisticAnalysis/salesReconciliation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesReconciliation/index',
- name: '销售对账',
- meta: {
- i18n: '/statisticAnalysis/salesReconciliation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliation/index')
- }]
- },
- //销售对账详情
- {
- path: '/statisticAnalysis/salesReconciliationDetails/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesReconciliationDetails/index',
- name: '销售对账详情',
- meta: {
- i18n: '/statisticAnalysis/salesReconciliationDetails/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliationDetails/index')
- }]
- },
- //应收总账
- {
- path: '/statisticAnalysis/collectLedger/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/collectLedger/index',
- name: '应收总账',
- meta: {
- i18n: '/statisticAnalysis/collectLedger/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/collectLedger/index')
- }]
- },
- //应付总账
- {
- path: '/statisticAnalysis/paymentLedger/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/paymentLedger/index',
- name: '应付总账',
- meta: {
- i18n: '/statisticAnalysis/paymentLedger/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/paymentLedger/index')
- }]
- },
- //利润总账
- {
- path: '/statisticAnalysis/profitLedger/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/profitLedger/index',
- name: '利润总账',
- meta: {
- i18n: '/statisticAnalysis/profitLedger/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitLedger/index')
- }]
- },
- //采购合同(D)
- {
- path: '/dealer/purchaseContract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/purchaseContract/index',
- name: '采购合同(D)',
- meta: {
- i18n: '/dealer/purchaseContract/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchaseContract/index')
- }]
- },
- {
- path: '/warehousing/inStock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/warehousing/inStock/index',
- name: '入库',
- meta: {
- i18n: '/warehousing/inStock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/inStock/index')
- }]
- },
- {
- path: '/warehousing/outStock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/warehousing/outStock/index',
- name: '出库',
- meta: {
- i18n: '/warehousing/outStock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/outStock/index')
- }]
- },
- {
- path: '/warehousing/stockTransfer/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/warehousing/stockTransfer/index',
- name: '调拨',
- meta: {
- i18n: '/warehousing/stockTransfer/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/stockTransfer/index')
- }]
- },
- {
- path: '/warehousing/goodsTransfer/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/warehousing/goodsTransfer/index',
- name: '货转',
- meta: {
- i18n: '/warehousing/goodsTransfer/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/goodsTransfer/index')
- }]
- },
- {
- path: '/statisticAnalysis/taskStatistics/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/taskStatistics/index',
- name: '任务统计',
- meta: {
- i18n: '/statisticAnalysis/taskStatistics/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/taskStatistics/index')
- }]
- },
- {
- path: '/statisticAnalysis/commissionStatistics/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/commissionStatistics/index',
- name: '提成统计(S)',
- meta: {
- i18n: '/statisticAnalysis/commissionStatistics/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/commissionStatistics/index')
- }]
- }, {
- path: '/purchasingManagement/inStock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchasingManagement/inStock/index',
- name: '入库管理',
- meta: {
- i18n: '/purchasingManagement/inStock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchasingManagement/inStock/index')
- }]
- }, {
- path: '/basicData/agreement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/agreement/index',
- name: '仓储费协议',
- meta: {
- i18n: '/basicData/agreement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/agreement/index')
- }]
- }, {
- path: '/financing/financingManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financing/financingManagement/index',
- name: '融资管理',
- meta: {
- i18n: '/financing/financingManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingManagement/index')
- }]
- }, {
- path: '/financing/financingLedger/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financing/financingLedger/index',
- name: '融资总账',
- meta: {
- i18n: '/financing/financingLedger/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingLedger/index')
- }]
- }, {
- path: '/financing/financingLedger/detail',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financing/financingLedger/detail',
- name: '融资总账明细',
- meta: {
- i18n: '/financing/financingLedger/detail',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financing/financingLedger/detail')
- }]
- }, {
- path: '/InventoryManagement/inventoryAccount/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/InventoryManagement/inventoryAccount/index',
- name: '库存帐',
- meta: {
- i18n: '/InventoryManagement/inventoryAccount/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/InventoryManagement/inventoryAccount/index')
- }]
- }, {
- path: '/salesManagement/outStock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salesManagement/outStock/index',
- name: '出库管理',
- meta: {
- i18n: '/salesManagement/outStock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salesManagement/outStock/index')
- }]
- }, {
- path: '/client/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/client/index',
- name: '客户(Y)',
- meta: {
- i18n: '/client/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/client/index')
- }]
- }, {
- path: '/client/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/client/index',
- name: '客户(Y)',
- meta: {
- i18n: '/client/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/client/index')
- }]
- }, {
- path: '/salesOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salesOrder/index',
- name: '销售单',
- meta: {
- i18n: '/salesOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salesOrder/index')
- }]
- }, {
- path: '/salesOrderTwo/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salesOrderTwo/index',
- name: '销售计划单',
- meta: {
- i18n: '/salesOrderTwo/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salesOrderTwo/index')
- }]
- }, {
- path: '/purchaseOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchaseOrder/index',
- name: '采购单',
- meta: {
- i18n: '/purchaseOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchaseOrder/index')
- }]
- }, {
- path: '/product/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/product/index',
- name: '产品',
- meta: {
- i18n: '/product/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/product/index')
- }]
- }, {
- path: '/tirePartsMall/inventory/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/inventory/index',
- name: '库存查询',
- meta: {
- i18n: '/tirePartsMall/inventory/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/inventory/index')
- }]
- }, {
- path: '/tirePartsMall/inventory/detail',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/inventory/detail',
- name: '库存账明细',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/inventory/detail')
- }]
- }, {
- path: '/statisticAnalysis/AmtAmount/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/AmtAmount/index',
- name: '数量金额汇总',
- meta: {
- i18n: '/statisticAnalysis/AmtAmount/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/AmtAmount/index')
- }]
- }, {
- path: '/statisticAnalysis/customerDelivery/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/customerDelivery/index',
- name: '发货客户统计',
- meta: {
- i18n: '/statisticAnalysis/customerDelivery/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/customerDelivery/index')
- }]
- }, {
- path: '/statisticAnalysis/salesmanDelivery/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesmanDelivery/index',
- name: '发货业务员统计',
- meta: {
- i18n: '/statisticAnalysis/salesmanDelivery/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanDelivery/index')
- }]
- }, {
- path: '/statisticAnalysis/specificationsDelivery/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/specificationsDelivery/index',
- name: '发货规格统计',
- meta: {
- i18n: '/statisticAnalysis/specificationsDelivery/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/specificationsDelivery/index')
- }]
- }, {
- path: '/statisticAnalysis/customerProfit/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/customerProfit/index',
- name: '客户利润统计',
- meta: {
- i18n: '/statisticAnalysis/customerProfit/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/customerProfit/index')
- }]
- }, {
- path: '/statisticAnalysis/salesmanProfit/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesmanProfit/index',
- name: '业务员利润统计',
- meta: {
- i18n: '/statisticAnalysis/salesmanProfit/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanProfit/index')
- }]
- }, {
- path: '/statisticAnalysis/brandProfit/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/brandProfit/index',
- name: '品牌利润对比统计',
- meta: {
- i18n: '/statisticAnalysis/brandProfit/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/brandProfit/index')
- }]
- }, {
- path: '/supplier/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/supplier/index',
- name: '供应商(Y)',
- meta: {
- i18n: '/supplier/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/supplier/index')
- }]
- }, {
- path: '/basicData/container/archives',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/container/archives',
- name: '箱档案',
- meta: {
- i18n: '/basicData/container/archives',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/archives')
- }]
- }, {
- path: '/boxManagement/buyContainer/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/buyContainer/index',
- name: '买箱',
- meta: {
- i18n: '/boxManagement/buyContainer/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/buyContainer/index')
- }]
- }, {
- path: '/boxManagement/sellingContainers/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/sellingContainers/index',
- name: '卖箱',
- meta: {
- i18n: '/boxManagement/sellingContainers/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/sellingContainers/index')
- }]
- }, {
- path: '/boxManagement/exportShipment/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/exportShipment/index',
- name: '出口装运',
- meta: {
- i18n: '/boxManagement/exportShipment/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/exportShipment/index')
- }]
- }, {
- path: '/boxManagement/importReturnTrip/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/importReturnTrip/index',
- name: '进口返程',
- meta: {
- i18n: '/boxManagement/importReturnTrip/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/importReturnTrip/index')
- }]
- }, {
- path: '/boxManagement/boxRepair/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/boxRepair/index',
- name: '修箱',
- meta: {
- i18n: '/boxManagement/boxRepair/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxRepair/index')
- }]
- }, {
- path: '/boxManagement/boxWashing/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/boxWashing/index',
- name: '洗箱',
- meta: {
- i18n: '/boxManagement/boxWashing/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxWashing/index')
- }]
- }, {
- path: '/boxManagement/leaseIn/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/leaseIn/index',
- name: '租入',
- meta: {
- i18n: '/boxManagement/leaseIn/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/leaseIn/index')
- }]
- }, {
- path: '/boxManagement/leaseOut/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/leaseOut/index',
- name: '租出',
- meta: {
- i18n: '/boxManagement/leaseOut/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/leaseOut/index')
- }]
- }, {
- path: '/purchase/importDeclaration/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchase/importDeclaration/index',
- name: '进口报关',
- meta: {
- i18n: '/purchase/importDeclaration/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/importDeclaration/index')
- }]
- }, {
- path: '/purchase/exportDeclaration/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchase/exportDeclaration/index',
- name: '出口报关',
- meta: {
- i18n: '/purchase/exportDeclaration/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/exportDeclaration/index')
- }]
- }, {
- path: '/boxManagement/boxTrack/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/boxTrack/index',
- name: '箱轨迹',
- meta: {
- i18n: '/boxManagement/boxTrack/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/boxTrack/index')
- }]
- }, {
- path: '/boxManagement/stockpilingManage/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/boxManagement/stockpilingManage/index',
- name: '堆存管理',
- meta: {
- i18n: '/boxManagement/stockpilingManage/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/boxManagement/stockpilingManage/index')
- }]
- }, {
- path: '/statisticAnalysis/profitStatistics/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/profitStatistics/index',
- name: '利润统计',
- meta: {
- i18n: '/statisticAnalysis/profitStatistics/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitStatistics/index')
- }]
- }, {
- path: '/purchase/rubberStock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchase/rubberStock/index',
- name: '橡胶库存',
- meta: {
- i18n: '/purchase/rubberStock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/rubberStock/index')
- }]
- }, {
- path: '/statisticAnalysis/accountBalanceD/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/accountBalanceD/index',
- name: '应收账款余额',
- meta: {
- i18n: '/statisticAnalysis/accountBalanceD/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/accountBalanceD/index')
- }]
- }, {
- path: '/statisticAnalysis/accountBalanceC/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/accountBalanceC/index',
- name: '应付账款余额',
- meta: {
- i18n: '/statisticAnalysis/accountBalanceC/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/accountBalanceC/index')
- }]
- }, {
- path: '/oceanShipping/maritimeExport/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/oceanShipping/maritimeExport/index',
- name: '海运出口',
- meta: {
- i18n: '/oceanShipping/maritimeExport/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/oceanShipping/maritimeExport/index')
- }]
- }, {
- path: '/oceanShipping/oceanFreightImport/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/oceanShipping/oceanFreightImport/index',
- name: '海运进口',
- meta: {
- i18n: '/oceanShipping/oceanFreightImport/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/oceanShipping/oceanFreightImport/index')
- }]
- }, {
- path: '/maintenance/overpayment/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/overpayment/index',
- name: '溢付款',
- meta: {
- i18n: '/maintenance/overpayment/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/overpayment/index')
- }]
- }, {
- path: '/maintenance/rebate/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/rebate/index',
- name: '返利',
- meta: {
- i18n: '/maintenance/rebate/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/rebate/index')
- }]
- }, {
- path: '/statisticAnalysis/budgetAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/budgetAnalysis/index',
- name: '预算分析',
- meta: {
- i18n: '/statisticAnalysis/budgetAnalysis/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/budgetAnalysis/index')
- }]
- }, {
- path: '/annualBudget/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/annualBudget/index',
- name: '年度预算',
- meta: {
- i18n: '/annualBudget/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/annualBudget/index')
- }]
- }, {
- path: '/paymentManagement/paymentRecord/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/paymentManagement/paymentRecord/index',
- name: '支付记录',
- meta: {
- i18n: '/paymentManagement/paymentRecord/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/paymentManagement/paymentRecord/index')
- }]
- }, {
- path: '/productLaunch/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/productLaunch/index',
- name: '产品上架',
- meta: {
- i18n: '/productLaunch/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/productLaunch/index')
- }]
- }, {
- path: '/tirePartsMall/basicData/accountManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/accountManagement/index',
- name: '账户管理',
- meta: {
- i18n: '/tirePartsMall/basicData/accountManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/accountManagement/index')
- }]
- }, {
- path: '/tirePartsMall/basicData/warehouse/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/warehouse/index',
- name: '仓库',
- meta: {
- i18n: '/tirePartsMall/basicData/warehouse/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/warehouse/index')
- }]
- }, {
- path: '/tirePartsMall/basicData/brandPage/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/brandPage/index',
- name: '品牌',
- meta: {
- i18n: '/tirePartsMall/basicData/brandPage/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/brandPage/index')
- }]
- }, {
- path: '/tirePartsMall/basicData/supplier/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/supplier/index',
- name: '供应商',
- meta: {
- i18n: '/tirePartsMall/basicData/supplier/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/supplier/index')
- }]
- }, {
- path: '/tirePartsMall/basicData/customerInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/customerInformation/index',
- name: '客户',
- meta: {
- i18n: '/tirePartsMall/basicData/customerInformation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/customerInformation/index')
- }]
- }, {
- path: '/tirePartsMall/basicData/commodityInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/commodityInformation/index',
- name: '商品',
- meta: {
- i18n: '/tirePartsMall/basicData/commodityInformation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/commodityInformation/index')
- }]
- }, {
- path: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
- name: '采购入库',
- meta: {
- i18n: '/tirePartsMall/purchasingManagement/warehouseEntryOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchasingManagement/warehouseEntryOrder/index')
- }]
- }, {
- path: '/tirePartsMall/salesManagement/purchaseOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesManagement/purchaseOrder/index',
- name: '采购订单',
- meta: {
- i18n: '/tirePartsMall/salesManagement/purchaseOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/purchaseOrder/index')
- }]
- }, {
- path: '/tirePartsMall/salesManagement/Inventory/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesManagement/Inventory/index',
- name: '盘点(L)',
- meta: {
- i18n: '/tirePartsMall/salesManagement/Inventory/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/Inventory/index')
- }]
- }, {
- path: '/tirePartsMall/salesManagement/inboundTask/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesManagement/inboundTask/index',
- name: '入库任务',
- meta: {
- i18n: '/tirePartsMall/salesManagement/inboundTask/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/inboundTask/index')
- }]
- }, {
- path: '/tirePartsMall/salesManagement/saleOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesManagement/saleOrder/index',
- name: '销售订单(L)',
- meta: {
- i18n: '/tirePartsMall/salesManagement/saleOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/saleOrder/index')
- }]
- }, {
- path: '/tirePartsMall/salesManagement/outboundTask/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesManagement/outboundTask/index',
- name: '出库任务(L)',
- meta: {
- i18n: '/tirePartsMall/salesManagement/outboundTask/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundTask/index')
- }]
- }, {
- path: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
- name: '出库工单(L)',
- meta: {
- i18n: '/tirePartsMall/salesManagement/outboundWorkOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundWorkOrder/index')
- }]
- }, {
- path: '/tirePartsMall/salesService/returns/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesService/returns/index',
- name: '销售退货(L)',
- meta: {
- i18n: '/tirePartsMall/salesService/returns/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesService/returns/index')
- }]
- }, {
- path: '/tirePartsMall/salesService/Task/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesService/Task/index',
- name: '销售退单任务(L)',
- meta: {
- i18n: '/tirePartsMall/salesService/Task/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesService/Task/index')
- }]
- }, {
- path: '/tirePartsMall/salesService/inStorage/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesService/inStorage/index',
- name: '退货入库(L)',
- meta: {
- i18n: '/tirePartsMall/salesService/inStorage/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesService/inStorage/index')
- }]
- }, {
- path: '/tirePartsMall/purchaseService/returns/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/purchaseService/returns/index',
- name: '采购退货(L)',
- meta: {
- i18n: '/tirePartsMall/purchaseService/returns/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchaseService/returns/index')
- }]
- }, {
- path: '/tirePartsMall/purchaseService/Task/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/purchaseService/Task/index',
- name: '采购退单任务(L)',
- meta: {
- i18n: '/tirePartsMall/purchaseService/Task/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchaseService/Task/index')
- }]
- }, {
- path: '/tirePartsMall/purchaseService/inStorage/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/purchaseService/outStorage/index',
- name: '退货出库(L)',
- meta: {
- i18n: '/tirePartsMall/purchaseService/outStorage/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/purchaseService/outStorage/index')
- }]
- }, {
- path: '/tirePartsMall/basicData/listingManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/listingManagement/index',
- name: '上架管理',
- meta: {
- i18n: '/tirePartsMall/basicData/listingManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/listingManagement/index')
- }]
- }, {
- path: '/tirePartsMall/basicData/shareListing/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/shareListing/index',
- name: '共享上架',
- meta: {
- i18n: '/tirePartsMall/basicData/shareListing/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/shareListing/index')
- }]
- },
- {
- path: '/tirePartsMall/financialManagement/collectionSettlement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/financialManagement/collectionSettlement/index',
- name: '收款结算(L)',
- meta: {
- i18n: '/tirePartsMall/financialManagement/collectionSettlement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/collectionSettlement/index')
- }]
- },
- {
- path: '/tirePartsMall/financialManagement/collectionSettlement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/financialManagement/paymentSettlement/index',
- name: '付款结算(L)',
- meta: {
- i18n: '/tirePartsMall/financialManagement/paymentSettlement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/paymentSettlement/index')
- }]
- },
- // 统计销售
- {
- path: '/tirePartsMall/financialManagement/saleDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/financialManagement/saleDetail/index',
- name: '统计销售(L)',
- meta: {
- i18n: '/tirePartsMall/financialManagement/saleDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/saleDetail/index')
- }]
- },
- // 统计销售
- {
- path: '/tirePartsMall/financialManagement/purchaseDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/financialManagement/purchaseDetail/index',
- name: '统计采购(L)',
- meta: {
- i18n: '/tirePartsMall/financialManagement/purchaseDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/purchaseDetail/index')
- }]
- },
- {
- path: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
- name: '客户往来',
- meta: {
- i18n: '/tirePartsMall/statisticAnalysis/customerTransactions/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/customerTransactions/index')
- }]
- },
- {
- path: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
- name: '供应商往来',
- meta: {
- i18n: '/tirePartsMall/statisticAnalysis/supplierTransactions/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/supplierTransactions/index')
- }]
- },
- {
- path: '/tirePartsMall/activity/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/activity/index',
- name: '活动(L)',
- meta: {
- i18n: '/tirePartsMall/activity/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/activity/index')
- }]
- },
- {
- path: '/iosBasicData/SeafreightExportF/bills/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/SeafreightExportF/bills/index',
- name: '海运出口(F)',
- meta: {
- i18n: '/iosBasicData/SeafreightExportF/bills/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/SeafreightExportF/bills/index.vue')
- }]
- },
- {
- path: '/iosBasicData/OceanFreightImport/bills/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/OceanFreightImport/bills/index',
- name: '海运进口(F)',
- meta: {
- i18n: '/iosBasicData/OceanFreightImport/bills/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/OceanFreightImport/bills/index.vue')
- }]
- },
- {
- path: '/iosBasicData/AirtransportExport/bills/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/AirtransportExport/bills/index',
- name: '空运出口(F)',
- meta: {
- i18n: '/iosBasicData/AirtransportExport/bills/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/AirtransportExport/bills/index.vue')
- }]
- },
- {
- path: '/iosBasicData/AirtransportImport/bills/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/AirtransportImport/bills/index',
- name: '空运进口(F)',
- meta: {
- i18n: '/iosBasicData/AirtransportImport/bills/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/AirtransportImport/bills/index.vue')
- }]
- },
- {
- path: '/iosBasicData/seamends/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/seamends/index',
- name: 'SEAMEND',
- meta: {
- i18n: '/iosBasicData/seamends/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/seamends/index.vue')
- }]
- },
- {
- path: '/iosBasicData/siamends/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/siamends/index',
- name: 'SIAMEND',
- meta: {
- i18n: '/iosBasicData/siamends/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/siamends/index.vue')
- }]
- },
- {
- path: '/iosBasicData/aeamends/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/aeamends/index',
- name: 'AEAMEND',
- meta: {
- i18n: '/iosBasicData/aeamends/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/aeamends/index.vue')
- }]
- },
- {
- path: '/iosBasicData/aiamends/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/aiamends/index',
- name: 'AIAMEND',
- meta: {
- i18n: '/iosBasicData/aiamends/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/aiamends/index.vue')
- }]
- },
- {
- path: '/billM/billingCenter/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/billM/billingCenter/index',
- name: '账单中心',
- meta: {
- i18n: '/billM/billingCenter/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/billM/billingCenter/index.vue')
- }]
- },
- {
- path: '/iosBasicData/losbfeestemplate/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/losbfeestemplate/index',
- name: '费用模板(F)',
- meta: {
- i18n: '/iosBasicData/losbfeestemplate/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/losbfeestemplate/index.vue')
- }]
- },
- {
- path: '/iosBasicData/VoucherTemplates/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/VoucherTemplates/index',
- name: '凭证模板(F)',
- meta: {
- i18n: '/iosBasicData/VoucherTemplates/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/VoucherTemplates/index.vue')
- }]
- },
- {
- path: '/iosBasicData/psBcorps/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/psBcorps/index',
- name: 'PS客户',
- meta: {
- i18n: '/iosBasicData/psBcorps/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/psBcorps/index.vue')
- }]
- },
- {
- path: '/iosBasicData/bcorps/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/bcorps/index',
- name: '往来单位(F)',
- meta: {
- i18n: '/iosBasicData/bcorps/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/bcorps/index.vue')
- }]
- },
- {
- path: '/iosBasicData/rateManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/rateManagement/index',
- name: '币别及汇率(F)',
- meta: {
- i18n: '/iosBasicData/rateManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/rateManagement/index.vue')
- }]
- },
- {
- path: '/iosBasicData/baccitemstype/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/baccitemstype/index',
- name: '核算项目(F)',
- meta: {
- i18n: '/iosBasicData/baccitemstype/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/baccitemstype/index.vue')
- }]
- },
- {
- path: '/financialManagementF/agreementprice/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagementF/agreementprice/index',
- name: '协议管理(F)',
- meta: {
- i18n: '/financialManagementF/agreementprice/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagementF/agreementprice/index.vue')
- }]
- },
- // 审批详情
- {
- path: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
- name: '审批详情(F)',
- meta: {
- i18n: '/iosBasicData/SeafreightExportF/bills/approvalDetails',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/SeafreightExportF/bills/approvalDetails.vue')
- }]
- },
- // 对账中心(F)
- {
- path: '/iosBasicData/finstlbills/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/finstlbills/index',
- name: '对账中心(F)',
- meta: {
- i18n: '/iosBasicData/finstlbills/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/finstlbills/index.vue')
- }]
- },
- // 付费申请(F)
- {
- path: '/iosBasicData/PaymentApplication/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/PaymentApplication/index',
- name: '付费申请(F)',
- meta: {
- i18n: '/iosBasicData/PaymentApplication/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/PaymentApplication/index.vue')
- }]
- },
- {
- path: '/iosBasicData/PaymentSettlement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/PaymentSettlement/index',
- name: '付款结算(F)',
- meta: {
- i18n: '/iosBasicData/PaymentApplication/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/PaymentSettlement/index.vue')
- }]
- },
- // 收款结算(F)
- {
- path: '/iosBasicData/CollectionSettlement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/CollectionSettlement/index',
- name: '收款结算(F)',
- meta: {
- i18n: '/iosBasicData/CollectionSettlement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/CollectionSettlement/index.vue')
- }]
- },
- // 发票中心(F)
- {
- path: '/iosBasicData/fininvoicesApplyfor/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/fininvoicesApplyfor/index',
- name: '发票申请(F)',
- meta: {
- i18n: '/iosBasicData/fininvoicesApplyfor/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fininvoicesApplyfor/index.vue')
- }]
- },
- {
- path: '/iosBasicData/fininvoices/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/fininvoices/index',
- name: '进项发票(F)',
- meta: {
- i18n: '/iosBasicData/fininvoices/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fininvoices/index.vue')
- }]
- },
- {
- path: '/iosBasicData/fininvoicesOutput/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/fininvoicesOutput/index',
- name: '销项发票(F)',
- meta: {
- i18n: '/iosBasicData/fininvoicesOutput/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fininvoicesOutput/index.vue')
- }]
- },
- // 调拨(L)
- {
- path: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
- name: '调拨(L)',
- meta: {
- i18n: '/tirePartsMall/salesManagement/outboundWorkOrderL/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/salesManagement/outboundWorkOrderL/index')
- }]
- },
- // 科目管理(F)
- {
- path: '/iosBasicData/accounts/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/accounts/index',
- name: '科目管理(F)',
- meta: {
- i18n: '/iosBasicData/accounts/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/accounts/index')
- }]
- },
- // 结算中心(F)
- {
- path: '/iosBasicData/ComputationCenter/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/ComputationCenter/index',
- name: '结算中心(F)',
- meta: {
- i18n: '/iosBasicData/ComputationCenter/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/ComputationCenter/index')
- }]
- },
- // 收付汇总
- {
- path: '/iosBasicData/paymentSummary/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/paymentSummary/index',
- name: '收付汇总(F)',
- meta: {
- i18n: '/iosBasicData/paymentSummary/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/paymentSummary/index')
- }]
- },
- // 收付明细
- {
- path: '/iosBasicData/paymentDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/paymentDetail/index',
- name: '收付明细(F)',
- meta: {
- i18n: '/iosBasicData/paymentDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/paymentDetail/index')
- }]
- },
- // 未收付明细(F)
- {
- path: '/iosBasicData/UnpaidPaymentsDetails/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/UnpaidPaymentsDetails/index',
- name: '未收付明细(F)',
- meta: {
- i18n: '/iosBasicData/UnpaidPaymentsDetails/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/UnpaidPaymentsDetails/index')
- }]
- },
- // 账龄分析(F)
- {
- path: '/iosBasicData/agingAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/agingAnalysis/index',
- name: '账龄分析(F)',
- meta: {
- i18n: '/iosBasicData/agingAnalysis/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/agingAnalysis/index')
- }]
- },
- // 业务利润(F)
- {
- path: '/iosBasicData/financeProfit/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/financeProfit/index',
- name: '业务利润(F)',
- meta: {
- i18n: '/iosBasicData/financeProfit/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/financeProfit/index')
- }]
- },
- // 海运出口报关
- {
- path: '/iosBasicData/reportClose/SEreportClose/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/reportClose/SEreportClose/index',
- name: '海运出口报关',
- meta: {
- i18n: '/iosBasicData/reportClose/SEreportClose/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/reportClose/SEreportClose/index')
- }]
- },
- // 海运进口报关
- {
- path: '/iosBasicData/reportClose/SIreportClose/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/reportClose/SIreportClose/index',
- name: '海运进口报关',
- meta: {
- i18n: '/iosBasicData/reportClose/SIreportClose/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/reportClose/SIreportClose/index')
- }]
- },
- // 空运出口报关
- {
- path: '/iosBasicData/reportClose/AEreportClose/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/reportClose/AEreportClose/index',
- name: '空运出口报关',
- meta: {
- i18n: '/iosBasicData/reportClose/AEreportClose/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/reportClose/AEreportClose/index')
- }]
- },
- // 空运进口报关
- {
- path: '/iosBasicData/reportClose/AIreportClose/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/reportClose/AIreportClose/index',
- name: '空运进口报关',
- meta: {
- i18n: '/iosBasicData/reportClose/AIreportClose/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/reportClose/AIreportClose/index')
- }]
- },
- // 空运进口报关
- {
- path: '/iosBasicData/finvouchers/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/finvouchers/index',
- name: '财务凭证(F)',
- meta: {
- i18n: '/iosBasicData/finvouchers/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/finvouchers/index')
- }]
- },
- // 复制
- {
- path: '/system/copy/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/system/copy/index',
- name: '复制',
- meta: {
- i18n: '/system/copy/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/system/copy/index')
- }]
- },
- // 工作申请
- {
- path: '/iosBasicData/release/jobApplication/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/release/jobApplication/index',
- name: '工作申请',
- meta: {
- i18n: '/iosBasicData/release/jobApplication/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/release/jobApplication/index')
- }]
- },
- // 调度管理
- {
- path: '/iosBasicData/release/schedulingManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/release/schedulingManagement/index',
- name: '调度管理',
- meta: {
- i18n: '/iosBasicData/release/schedulingManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/release/schedulingManagement/index')
- }]
- },
- // 放单管理
- {
- path: '/iosBasicData/release/releaseManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/release/releaseManagement/index',
- name: '放单管理',
- meta: {
- i18n: '/iosBasicData/release/releaseManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/release/releaseManagement/index')
- }]
- },
- // 期间管理
- {
- path: '/iosBasicData/periodManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/periodManagement/index',
- name: '期间管理(F)',
- meta: {
- i18n: '/iosBasicData/periodManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/periodManagement/index')
- }]
- },
- // 总分类账
- {
- path: '/iosBasicData/fingenleg/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/fingenleg/index',
- name: '总分类账(F)',
- meta: {
- i18n: '/iosBasicData/fingenleg/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fingenleg/index')
- }]
- },
- // 核算项目明细账
- {
- path: '/iosBasicData/fingenlegcalc/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/fingenlegcalc/index',
- name: '核算项目明细账(F)',
- meta: {
- i18n: '/iosBasicData/fingenlegcalc/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/fingenlegcalc/index')
- }]
- },
- // 明细账
- {
- path: '/iosBasicData/accountsDetails/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/accountsDetails/index',
- name: '明细账(F)',
- meta: {
- i18n: '/iosBasicData/accountsDetails/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/iosBasicData/accountsDetails/index')
- }]
- },
- // 销售分析
- {
- path: '/tirePartsMall/financialManagement/salesAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/financialManagement/salesAnalysis/index',
- name: '销售分析(L)',
- meta: {
- i18n: '/tirePartsMall/financialManagement/salesAnalysis/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/financialManagement/salesAnalysis/index')
- }]
- },
- {
- path: '/tirePartsMall/basicData/listingManagement/detail',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/basicData/listingManagement/detail',
- name: '销售明细(L)',
- meta: {
- i18n: '/tirePartsMall/basicData/listingManagement/detail',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/basicData/listingManagement/detail')
- }]
- },
- {
- path: '/tirePartsMall/statisticAnalysis/generalLedgerReceivable/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/statisticAnalysis/generalLedgerReceivable/index',
- name: '应收总账(月)',
- meta: {
- i18n: '/tirePartsMall/statisticAnalysis/generalLedgerReceivable/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/generalLedgerReceivable/index')
- }]
- },
- {
- path: '/tirePartsMall/statisticAnalysis/generalLedgerPayable/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/statisticAnalysis/generalLedgerPayable/index',
- name: '应付总账(月)',
- meta: {
- i18n: '/tirePartsMall/statisticAnalysis/generalLedgerPayable/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/generalLedgerPayable/index')
- }]
- },
- {
- path: '/tirePartsMall/statisticAnalysis/profitLedger/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tirePartsMall/statisticAnalysis/profitLedger/index',
- name: '利润总账(月)',
- meta: {
- i18n: '/tirePartsMall/statisticAnalysis/profitLedger/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tirePartsMall/statisticAnalysis/profitLedger/index')
- }]
- },
- {
- path: '/iosBasicData/decisionAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/iosBasicData/decisionAnalysis/index',
- name: '海运箱量利润统计',
- meta: {
- i18n: '/iosBasicData/decisionAnalysis/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views//iosBasicData/decisionAnalysis/index')
- }]
- },
- {
- path: '/tradeAgency/tradeAgency/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tradeAgency/tradeAgency/index',
- name: '贸易代理(T)',
- meta: {
- i18n: '/tradeAgency/tradeAgency/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tradeAgency/tradeAgency/index')
- }]
- },
- {
- path: '/tradeAgency/exchangePurchasing/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/tradeAgency/exchangePurchasing/index',
- name: '购汇付汇',
- meta: {
- i18n: '/tradeAgency/exchangePurchasing/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/tradeAgency/exchangePurchasing/index')
- }]
- },
- ]
|