123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933 |
- // eslint-disable-next-line
- import {
- UserLayout,
- BasicLayout,
- BlankLayout,
- BigScreen,
- PageView
- } from '@/layouts'
- export const asyncRouterMap = [
- {
- path: '/',
- name: 'index',
- component: BasicLayout,
- meta: {
- title: '首页'
- },
- redirect: '/home',
- children: [
- {
- path: '/home',
- name: 'home',
- redirect: '/home',
- component: PageView,
- meta: {
- title: '首页',
- icon: 'home'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: '/home',
- name: 'home',
- redirect: '/home',
- component: BlankLayout,
- meta: {
- title: '首页',
- icon: 'home',
- hidden: true
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: '/home',
- name: 'home',
- component: () => import(/* webpackChunkName: "home" */ '@/views/Home'),
- meta: {
- title: '首页',
- icon: 'home',
- hidden: true
- }
- },
- {
- path: '/changePwd',
- name: 'changePwd',
- component: () => import(/* webpackChunkName: "home" */ '@/views/user/ChangePwd'),
- meta: {
- title: '修改密码',
- icon: 'home'
- },
- hidden: true
- },
- {
- path: '/notice',
- name: 'notice',
- component: () => import(/* webpackChunkName: "home" */ '@/views/setting/notice/list'),
- meta: {
- title: '公告',
- icon: 'bell'
- },
- hidden: true
- },
- {
- path: '/dowloadFile',
- name: 'dowloadFile',
- component: () => import(/* webpackChunkName: "home" */ '@/views/dowloadFile/list'),
- meta: {
- title: '下载中心',
- icon: 'bell'
- },
- hidden: true
- },
- // 新品列表
- {
- path: '/newProduct/list/:onlineFalg',
- name: 'newProductList',
- component: () => import(/* webpackChunkName: "home" */ '@/views/productManagement/newProduct/list'),
- meta: {
- title: '新品信息',
- icon: 'home'
- },
- hidden: true
- },
- {
- path: '/newProduct/list/:onlineFalg',
- name: 'oldProductList',
- component: () => import(/* webpackChunkName: "home" */ '@/views/productManagement/newProduct/list'),
- meta: {
- title: '下线产品列表',
- icon: 'home'
- },
- hidden: true
- },
- // 产品详情
- {
- path: '/viewProduct/:sn',
- name: 'viewProduct',
- component: () => import(/* webpackChunkName: "home" */ '@/views/productManagement/newProduct/detail'),
- meta: {
- title: '产品详情',
- icon: 'home'
- },
- hidden: true
- }
- ]
- }
- ]
- },
- // 销售管理
- {
- path: '/salesManagement',
- redirect: '/salesManagement/salesQueryNew',
- component: PageView,
- meta: {
- title: '销售管理',
- icon: 'account-book',
- permission: 'M_salesManagement'
- },
- children: [
- {
- path: '/salesManagement/salesQueryNew',
- redirect: '/salesManagement/salesQueryNew/list',
- name: 'salesQueryNew',
- component: BlankLayout,
- meta: {
- title: '销售单查询',
- icon: 'monitor',
- permission: 'M_salesQueryList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesQueryNewList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQueryNew/list.vue'),
- meta: {
- title: '销售单列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_salesQueryList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'salesNewDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQueryNew/detail.vue'),
- meta: {
- title: '销售单详情',
- icon: 'monitor',
- hidden: true,
- replaceTab: true,
- permission: 'B_salesDetail'
- }
- },
- {
- path: 'detail/:sn',
- name: 'salesNewDetailAudit',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQueryNew/detail.vue'),
- meta: {
- title: '销售单审核',
- icon: 'monitor',
- hidden: true,
- replaceTab: true,
- permission: 'B_salesAudit'
- }
- },
- {
- path: 'add/:sn',
- name: 'salesNewAdd',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQueryNew/edit.vue'),
- meta: {
- title: '新增销售单',
- icon: 'monitor',
- hidden: true,
- permission: 'B_salesEdit'
- }
- },
- {
- path: 'edit/:sn',
- name: 'salesNewEdit',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQueryNew/edit.vue'),
- meta: {
- title: '编辑销售单',
- icon: 'monitor',
- hidden: true,
- permission: 'B_salesEdit'
- }
- },
- {
- path: 'waitDispatch/:salesBillSn',
- name: 'waitDispatchNew',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/waitDispatchNew/edit.vue'),
- meta: {
- title: '下推销售单',
- icon: 'monitor',
- replaceTab: true,
- hidden: true,
- permission: 'B_salesDispatch'
- }
- },
- {
- path: 'waitCostOrder',
- name: 'waitCostOrder',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/waitCostOrder/list.vue'),
- meta: {
- title: '待转费用报销单',
- icon: 'monitor',
- hidden: true,
- permission: 'B_salesDispatch'
- }
- }
- ]
- },
- {
- path: '/salesManagement/salesOrderWarehouse',
- redirect: '/salesManagement/salesOrderWarehouse/list',
- name: 'salesOrderWarehouse',
- component: BlankLayout,
- meta: {
- title: '仓库销售单',
- icon: 'vertical-align-bottom',
- permission: 'M_salesOrderWarehouseList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesOrderWarehouseList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesOrderWarehouse/list.vue'),
- meta: {
- title: '仓库销售单列表',
- icon: 'vertical-align-bottom',
- hidden: true,
- permission: 'M_salesOrderWarehouseList'
- }
- },
- {
- path: 'detail/:sn/:wsn',
- name: 'saleOrderDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesOrderWarehouse/detail.vue'),
- meta: {
- title: '仓库销售单列表详情',
- icon: 'vertical-align-bottom',
- replaceTab: true,
- hidden: true,
- permission: 'B_salesOrderWarehouseDetail'
- }
- }
- ]
- },
- {
- path: '/salesManagement/pushOrderManagement',
- redirect: '/salesManagement/pushOrderManagement/list',
- name: 'pushOrderManagement',
- component: BlankLayout,
- meta: {
- title: '下推订单列表',
- icon: 'vertical-align-bottom',
- permission: 'M_pushOrderManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'pushOrderManagementList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/pushOrderManagement/list.vue'),
- meta: {
- title: '下推订单列表',
- icon: 'vertical-align-bottom',
- hidden: true,
- permission: 'M_pushOrderManagementList'
- }
- },
- {
- path: 'detail/:sn/:type',
- name: 'pushOrderDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/pushOrderManagement/detail.vue'),
- meta: {
- title: '下推订单详情',
- icon: 'vertical-align-bottom',
- replaceTab: true,
- hidden: true,
- permission: 'B_dispatchDetail'
- }
- }
- ]
- },
- {
- path: '/salesManagement/salesCollection',
- redirect: '/salesManagement/salesCollection/list',
- name: 'salesCollection',
- component: BlankLayout,
- meta: {
- title: '销售收款',
- icon: 'vertical-align-bottom',
- permission: 'M_salesCollectionList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesCollectionList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesCollection/list.vue'),
- meta: {
- title: '销售收款',
- icon: 'vertical-align-bottom',
- hidden: true,
- permission: 'M_salesCollectionList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/stockPrint',
- redirect: '/salesManagement/stockPrint/list',
- name: 'stockPrint',
- component: BlankLayout,
- meta: {
- title: '备货打印',
- icon: 'vertical-align-bottom',
- permission: 'M_stockPrintList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'stockPrintList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/stockPrint/list.vue'),
- meta: {
- title: '备货打印',
- icon: 'vertical-align-bottom',
- hidden: true,
- permission: 'M_stockPrintList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/receiptPrint',
- redirect: '/salesManagement/receiptPrint/list',
- name: 'receiptPrint',
- component: BlankLayout,
- meta: {
- title: '收款打印',
- icon: 'vertical-align-bottom',
- permission: 'M_receiptPrintList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'receiptPrintList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/receiptPrint/list.vue'),
- meta: {
- title: '收款打印',
- icon: 'vertical-align-bottom',
- hidden: true,
- permission: 'M_receiptPrintList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/matchSendOutOrder',
- redirect: '/salesManagement/matchSendOutOrder/list',
- name: 'matchSendOutOrder',
- component: BlankLayout,
- meta: {
- title: '发货对单',
- icon: 'vertical-align-bottom',
- permission: 'M_matchSendOutOrderList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'matchSendOutOrderList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/matchSendOutOrder/list.vue'),
- meta: {
- title: '发货对单',
- icon: 'vertical-align-bottom',
- hidden: true,
- permission: 'M_matchSendOutOrderList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/examineVerify',
- redirect: '/salesManagement/examineVerify/list',
- name: 'examineVerify',
- component: BlankLayout,
- meta: {
- title: '备货审核',
- icon: 'audit',
- permission: 'M_examineVerifyList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'examineVerifyList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/examineVerify/list.vue'),
- meta: {
- title: '备货审核列表',
- icon: 'audit',
- hidden: true,
- permission: 'M_examineVerifyList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/outboundOrder',
- redirect: '/salesManagement/outboundOrder/list',
- name: 'outboundOrder',
- component: BlankLayout,
- meta: {
- title: '出库',
- icon: 'export',
- permission: 'M_outboundOrderList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'outboundOrderList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/outboundOrder/list.vue'),
- meta: {
- title: '出库列表',
- icon: 'export',
- hidden: true,
- permission: 'M_outboundOrderList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/sendOutOrder',
- redirect: '/salesManagement/sendOutOrder/list',
- name: 'sendOutOrder',
- component: BlankLayout,
- meta: {
- title: '发货单列表',
- icon: 'export',
- permission: 'M_sendOutOrderList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'sendOutOrderList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/sendOutOrder/list.vue'),
- meta: {
- title: '发货单列表',
- icon: 'export',
- hidden: true,
- permission: 'M_sendOutOrderList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/backorder',
- redirect: '/salesManagement/backorder/list',
- name: 'backorder',
- component: BlankLayout,
- meta: {
- title: '销售缺货列表',
- icon: 'exception',
- permission: 'M_backorderList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'backorderList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/backorder/list.vue'),
- meta: {
- title: '销售缺货列表',
- icon: 'exception',
- hidden: true,
- permission: 'M_backorderList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/shortageStatisticsC',
- redirect: '/salesManagement/shortageStatisticsC/list',
- name: 'shortageStatisticsC',
- component: BlankLayout,
- meta: {
- title: '缺货统计(按客户)',
- icon: 'file-done',
- permission: 'M_shortageStatisticsCList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'shortageStatisticsCList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/shortageStatisticsC/list.vue'),
- meta: {
- title: '缺货统计(按客户)',
- icon: 'file-done',
- hidden: true,
- permission: 'M_shortageStatisticsCList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/shortageStatisticsP',
- redirect: '/salesManagement/shortageStatisticsP/list',
- name: 'shortageStatisticsP',
- component: BlankLayout,
- meta: {
- title: '缺货统计(按产品)',
- icon: 'file-protect',
- permission: 'M_shortageStatisticsPList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'shortageStatisticsPList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/shortageStatisticsP/list.vue'),
- meta: {
- title: '缺货统计(按产品)',
- icon: 'file-protect',
- hidden: true,
- permission: 'M_shortageStatisticsPList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/priceInquiry',
- redirect: '/salesManagement/priceInquiry/list',
- name: 'priceInquiry',
- component: BlankLayout,
- meta: {
- title: '价格查询',
- icon: 'file-protect',
- permission: 'M_priceInquiryList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'priceInquiryList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/priceInquiry/list.vue'),
- meta: {
- title: '价格查询列表',
- icon: 'file-protect',
- hidden: true,
- permission: 'M_priceInquiryList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/salesList',
- redirect: '/salesManagement/salesList/list',
- name: 'salesList',
- component: BlankLayout,
- meta: {
- title: '销售一览表',
- icon: 'file-protect',
- permission: 'M_salesList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesMainList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesList/list.vue'),
- meta: {
- title: '销售一览表',
- icon: 'file-protect',
- hidden: true,
- permission: 'M_salesList'
- }
- }
- ]
- }
- ]
- },
- // 销售退货
- {
- path: '/salesReturnManagement',
- redirect: '/salesReturnManagement/salesReturn',
- component: PageView,
- meta: {
- title: '销售退货',
- icon: 'export',
- permission: 'M_salesReturnManagement'
- },
- children: [
- {
- path: '/salesReturnManagement/salesReturn',
- redirect: '/salesReturnManagement/salesReturn/list',
- name: 'salesReturn',
- component: BlankLayout,
- meta: {
- title: '销售退货列表',
- icon: 'fund',
- permission: 'M_salesReturnList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesReturnList',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/salesReturn/list.vue'),
- meta: {
- title: '销售退货列表',
- icon: 'fund',
- hidden: true,
- permission: 'M_salesReturnList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'salesReturnDetail',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/salesReturn/detail.vue'),
- meta: {
- title: '销售退货详情',
- icon: 'fund',
- hidden: true,
- permission: 'B_salesReturnDetail'
- }
- },
- {
- path: 'salesReturnEdit/:sn/:buyerSn',
- name: 'salesReturnEdit',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/salesReturn/salesReturnEdit.vue'),
- meta: {
- title: '编辑销售退货',
- icon: 'fund',
- hidden: true,
- permission: 'B_salesReturnEdit'
- }
- },
- {
- path: 'custConfirm/:sn/:buyerSn',
- name: 'custConfirm',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/custConfirm/list.vue'),
- meta: {
- title: '客服确认',
- icon: 'fund',
- replaceTab: true,
- hidden: true,
- permission: 'B_salesReturnConfirm'
- }
- }
- ]
- },
- {
- path: '/salesReturnManagement/billOfLading',
- redirect: '/salesReturnManagement/billOfLading/list',
- name: 'billOfLading',
- component: BlankLayout,
- meta: {
- title: '提货单列表',
- icon: 'fund',
- permission: 'M_billOfLadingList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'billOfLadingList',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/billOfLading/list.vue'),
- meta: {
- title: '提货单列表',
- icon: 'fund',
- hidden: true,
- permission: 'M_billOfLadingList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'billOfLadingDetail',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/billOfLading/detail.vue'),
- meta: {
- title: '提货单详情',
- icon: 'fund',
- hidden: true,
- permission: 'M_detailPickUp'
- }
- },
- {
- path: 'add',
- name: 'billOfLadingAdd',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/billOfLading/add.vue'),
- meta: {
- title: '新增提货单',
- icon: 'fund',
- hidden: true,
- permission: 'B_editPickUp'
- }
- },
- {
- path: 'edit/:sn/:wSn',
- name: 'billOfLadingEdit',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/billOfLading/add.vue'),
- meta: {
- title: '编辑提货单',
- icon: 'fund',
- hidden: true,
- permission: 'B_editPickUp'
- }
- }
- ]
- },
- {
- path: '/salesReturnManagement/pickUp',
- redirect: '/salesReturnManagement/pickUp/list',
- name: 'pickUp',
- component: BlankLayout,
- meta: {
- title: '仓库提货',
- icon: 'fund',
- permission: 'M_pickUpList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'pickUpList',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/pickUp/list.vue'),
- meta: {
- title: '仓库提货列表',
- icon: 'fund',
- hidden: true,
- permission: 'M_pickUpList'
- }
- }
- ]
- },
- {
- path: '/salesReturnManagement/receiveCheck',
- redirect: '/salesReturnManagement/receiveCheck/list',
- name: 'receiveCheck',
- component: BlankLayout,
- meta: {
- title: '收货品检',
- icon: 'fund',
- permission: 'M_receiveCheckList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'receiveCheckList',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/receiveCheck/list.vue'),
- meta: {
- title: '收货品检列表',
- icon: 'fund',
- hidden: true,
- permission: 'M_receiveCheckList'
- }
- },
- {
- path: 'receiving/:sn/:buyerSn',
- name: 'salesReturnReceiving',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/receiveCheck/receiving.vue'),
- meta: {
- title: '收货',
- icon: 'fund',
- hidden: true,
- replaceTab: true,
- permission: 'B_salesReturnReceiving'
- }
- },
- {
- path: 'checking/:sn/:buyerSn',
- name: 'salesReturnCheck',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/receiveCheck/checking.vue'),
- meta: {
- title: '品检',
- icon: 'fund',
- hidden: true,
- replaceTab: true,
- permission: 'B_salesReturnCheck'
- }
- }
- ]
- },
- {
- path: '/salesReturnManagement/returnConfirmation',
- redirect: '/salesReturnManagement/returnConfirmation/list',
- name: 'returnConfirmation',
- component: BlankLayout,
- meta: {
- title: '销售退货确认',
- icon: 'vertical-align-top',
- permission: 'M_returnConfirmationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'returnConfirmationList',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/returnConfirmation/list.vue'),
- meta: {
- title: '销售退货确认列表',
- icon: 'vertical-align-top',
- hidden: true,
- permission: 'M_returnConfirmationList'
- }
- }
- ]
- },
- {
- path: '/salesReturnManagement/returnSchedule',
- redirect: '/salesReturnManagement/returnSchedule/list',
- name: 'returnSchedule',
- component: BlankLayout,
- meta: {
- title: '退货一览表',
- icon: 'vertical-align-top',
- permission: 'M_returnScheduleList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'returnScheduleList',
- component: () => import(/* webpackChunkName: "salesReturnManagement" */ '@/views/salesReturnManagement/returnSchedule/list.vue'),
- meta: {
- title: '退货一览表',
- icon: 'vertical-align-top',
- hidden: true,
- permission: 'M_returnScheduleList'
- }
- }
- ]
- }
- ]
- },
- // 采购管理
- {
- path: '/purchasingManagement',
- redirect: '/purchasingManagement/purchaseOrder',
- component: PageView,
- meta: {
- title: '采购管理',
- icon: 'money-collect',
- permission: 'M_purchasingManagement'
- },
- children: [
- {
- path: '/purchasingManagement/bulkWarehousingOrder',
- redirect: '/purchasingManagement/bulkWarehousingOrder/list',
- name: 'bulkWarehousingOrder',
- component: BlankLayout,
- meta: {
- title: '散件入库',
- icon: 'gold',
- permission: 'M_bulkWarehousingOrderList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'bulkWarehousingOrderList',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/bulkWarehousingOrder/list.vue'),
- meta: {
- title: '散件入库单列表',
- icon: 'gold',
- hidden: true,
- permission: 'M_bulkWarehousingOrderList'
- }
- },
- {
- path: 'add/:id/:sn',
- name: 'bulkWarehousingOrderAdd',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/bulkWarehousingOrder/edit.vue'),
- meta: {
- title: '新增散件入库单',
- icon: 'gold',
- hidden: true,
- permission: 'B_sparePartsEdit'
- }
- },
- {
- path: 'edit/:id/:sn',
- name: 'bulkWarehousingOrderEdit',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/bulkWarehousingOrder/edit.vue'),
- meta: {
- title: '编辑散件入库单',
- icon: 'gold',
- hidden: true,
- permission: 'B_sparePartsEdit'
- }
- }
- ]
- },
- {
- path: '/purchasingManagement/purchaseReturn',
- redirect: '/purchasingManagement/purchaseReturn/list',
- name: 'purchaseReturn',
- component: BlankLayout,
- meta: {
- title: '采购退货',
- icon: 'gold',
- permission: 'M_purchaseReturn'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'purchaseReturnList',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseReturn/list.vue'),
- meta: {
- title: '采购退货',
- icon: 'gold',
- hidden: true,
- permission: 'M_purchaseReturnList'
- }
- },
- {
- path: 'add',
- name: 'purchaseReturnAdd',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseReturn/purchaseReturnDeatil.vue'),
- meta: {
- title: '新增采购退货',
- icon: 'gold',
- hidden: true,
- permission: 'B_purchaseReturnEdit'
- }
- },
- {
- path: 'edit',
- name: 'purchaseReturnEdit',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseReturn/purchaseReturnDeatil.vue'),
- meta: {
- title: '编辑采购退货(不抓单)',
- icon: 'gold',
- hidden: true,
- permission: 'B_purchaseReturnEdit'
- }
- },
- {
- path: 'editGrab',
- name: 'purchaseReturnEditGrab',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseReturn/purchaseReturnDeatil.vue'),
- meta: {
- title: '编辑采购退货(抓单)',
- icon: 'gold',
- hidden: true,
- permission: 'B_purchaseReturnEdit'
- }
- }
- ]
- }
- ]
- },
- // 财务管理
- {
- path: '/financialManagement',
- redirect: '/financialManagement/warehousingConfirmation',
- component: PageView,
- meta: {
- title: '财务管理',
- icon: 'property-safety',
- permission: 'M_financialManagement'
- },
- children: [
- {
- path: '/financialManagement/warehousingConfirmation',
- redirect: '/financialManagement/warehousingConfirmation/list',
- name: 'warehousingConfirmation',
- component: BlankLayout,
- meta: {
- title: '入库确认',
- icon: 'vertical-align-bottom',
- permission: 'M_warehousingConfirmationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehousingConfirmationList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/warehousingConfirmation/list.vue'),
- meta: {
- title: '入库确认列表',
- icon: 'vertical-align-bottom',
- hidden: true,
- permission: 'M_warehousingConfirmationList'
- }
- }
- ]
- },
- {
- path: '/financialManagement/financialCollection',
- redirect: '/financialManagement/financialCollection/list',
- name: 'financialCollection',
- component: BlankLayout,
- meta: {
- title: '财务收款',
- icon: 'pay-circle',
- permission: 'M_financialCollectionList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'financialCollectionList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/financialCollection/list.vue'),
- meta: {
- title: '财务收款列表',
- icon: 'pay-circle',
- hidden: true,
- permission: 'M_financialCollectionList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'financialCollectionDetail',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/financialCollection/detail.vue'),
- meta: {
- title: '财务收款详情',
- icon: 'monitor',
- hidden: true,
- permission: 'B_fc_detail'
- }
- },
- {
- path: 'edit/:sn',
- name: 'financialCollectionEdit',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/financialCollection/edit.vue'),
- meta: {
- title: '编辑财务收款',
- icon: 'monitor',
- hidden: true,
- permission: 'B_fc_edit'
- }
- }
- ]
- },
- {
- path: '/financialManagement/collectionDetailStatic',
- redirect: '/financialManagement/collectionDetailStatic/list',
- name: 'collectionDetailStatic',
- component: BlankLayout,
- meta: {
- title: '财务收款明细统计',
- icon: 'vertical-align-top',
- permission: 'M_FC_Details_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'collectionDetailStaticList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/collectionDetailStatic/list.vue'),
- meta: {
- title: '财务收款明细统计列表',
- icon: 'vertical-align-top',
- hidden: true,
- permission: 'M_FC_Details_list'
- }
- }
- ]
- }
- ]
- },
- // 费用报销
- {
- path: '/expenseManagement',
- redirect: '/expenseManagement/expenseReimbursement',
- component: PageView,
- meta: {
- title: '费用报销',
- icon: 'account-book',
- permission: 'M_expenseManagement'
- },
- children: [
- {
- path: '/expenseManagement/expenseReimbursement',
- redirect: '/expenseManagement/expenseReimbursement/list',
- name: 'expenseReimbursement',
- component: BlankLayout,
- meta: {
- title: '费用报销单',
- icon: 'monitor',
- permission: 'M_expenseReimbursementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'expenseReimbursementList',
- component: () => import(/* webpackChunkName: "expenseManagement" */ '@/views/expenseManagement/expenseReimbursement/list.vue'),
- meta: {
- title: '费用报销单列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_expenseReimbursementList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'expenseReimbursementListDetail',
- component: () => import(/* webpackChunkName: "expenseManagement" */ '@/views/expenseManagement/expenseReimbursement/detail.vue'),
- meta: {
- title: '费用报销单详情',
- icon: 'monitor',
- hidden: true,
- permission: 'B_eRdetail'
- }
- },
- {
- path: 'edit/:sn',
- name: 'expenseReimbursementEdit',
- component: () => import(/* webpackChunkName: "expenseManagement" */ '@/views/expenseManagement/expenseReimbursement/add.vue'),
- meta: {
- title: '编辑费用报销单',
- icon: 'monitor',
- hidden: true,
- permission: 'B_ERtEdit'
- }
- }
- ]
- },
- {
- path: '/expenseManagement/expenseReimbursementDetail',
- redirect: '/expenseManagement/expenseReimbursementDetail/list',
- name: 'expenseReimbursementDetail',
- component: BlankLayout,
- meta: {
- title: '费用报销明细统计',
- icon: 'audit',
- permission: 'M_expenseReimbursementDetailList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'expenseReimbursementDetailList',
- component: () => import(/* webpackChunkName: "expenseManagement" */ '@/views/expenseManagement/expenseReimbursementDetail/list.vue'),
- meta: {
- title: '费用报销明细统计列表',
- icon: 'audit',
- hidden: true,
- permission: 'M_expenseReimbursementDetailList'
- }
- }
- ]
- }
- ]
- },
- // 库存管理
- {
- path: '/inventoryManagement',
- redirect: '/inventoryManagement/inventoryQuery',
- component: PageView,
- meta: {
- title: '库存管理',
- icon: 'shop',
- permission: 'M_inventoryManagement'
- },
- children: [
- {
- path: '/inventoryManagement/inventoryQuery',
- redirect: '/inventoryManagement/inventoryQuery/list',
- name: 'inventoryQuery',
- component: BlankLayout,
- meta: {
- title: '库存查询',
- icon: 'monitor',
- permission: 'M_inventoryQueryList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryQueryList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryQuery/list.vue'),
- meta: {
- title: '库存列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_inventoryQueryList'
- }
- },
- {
- path: 'warehouseDetail/:sn/:warehouseSn',
- name: 'inventoryQueryWarehouseDetail',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryQuery/warehouseDetail.vue'),
- meta: {
- title: '出入库明细',
- icon: 'monitor',
- replaceTab: true,
- hidden: true,
- permission: 'B_inventoryQuery_rkDetail'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/inventoryCheck',
- redirect: '/inventoryManagement/inventoryCheck/list/0',
- name: 'inventoryCheck',
- component: BlankLayout,
- meta: {
- title: '库存盘点',
- icon: 'monitor',
- permission: 'M_inventoryCheckList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list/:type',
- name: 'inventoryCheckList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryCheck/list.vue'),
- meta: {
- title: '库存盘点列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_inventoryCheckList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'inventoryCheckDetail',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryCheck/detail.vue'),
- meta: {
- title: '库存盘点详情',
- icon: 'monitor',
- hidden: true,
- replaceTab: true,
- permission: 'B_inventoryCheckDetail'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/makeInventory',
- redirect: '/inventoryManagement/makeInventory/list',
- name: 'makeInventory',
- component: BlankLayout,
- meta: {
- title: '盘点人盘点',
- icon: 'monitor',
- permission: 'M_inventoryMakeInventoryList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'makeInventoryList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/makeInventory/list.vue'),
- meta: {
- title: '盘点人盘点列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_inventoryMakeInventoryList'
- }
- },
- {
- path: 'check/:sn',
- name: 'makeInventoryCheck',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/makeInventory/check.vue'),
- meta: {
- title: '盘点人盘点',
- icon: 'monitor',
- hidden: true,
- replaceTab: true,
- permission: 'B_inventoryMakeInventoryCheck'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/supervisionDisk',
- redirect: '/inventoryManagement/supervisionDisk/list',
- name: 'supervisionDisk',
- component: BlankLayout,
- meta: {
- title: '监盘人盘点',
- icon: 'monitor',
- permission: 'M_supervisionDiskList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'supervisionDiskList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/supervisionDisk/list.vue'),
- meta: {
- title: '监盘人盘点列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_supervisionDiskList'
- }
- },
- {
- path: 'check/:sn',
- name: 'supervisionDiskCheck',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/supervisionDisk/check.vue'),
- meta: {
- title: '监盘人监盘',
- icon: 'monitor',
- replaceTab: true,
- hidden: true,
- permission: 'B_supervisionDiskCheck'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/inventoryConfirmation',
- redirect: '/inventoryManagement/inventoryConfirmation/list',
- name: 'inventoryConfirmation',
- component: BlankLayout,
- meta: {
- title: '盘点确认',
- icon: 'monitor',
- permission: 'M_inventoryConfirmationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryConfirmationList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryConfirmation/list.vue'),
- meta: {
- title: '盘点确认列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_inventoryConfirmationList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'inventoryConfirmationDetail',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryConfirmation/detail.vue'),
- meta: {
- title: '盘点确认详情',
- icon: 'monitor',
- hidden: true,
- permission: 'B_inventoryConfirmationDetail'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/inventoryWarning',
- redirect: '/inventoryManagement/inventoryWarning/list',
- name: 'inventoryWarning',
- component: BlankLayout,
- meta: {
- title: '库存预警',
- icon: 'monitor',
- permission: 'M_inventoryWarningList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryWarningList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryWarning/list.vue'),
- meta: {
- title: '库存预警列表',
- icon: 'alert',
- hidden: true,
- permission: 'M_inventoryWarningList'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/intelligentReplenishment',
- redirect: '/inventoryManagement/intelligentReplenishment/list',
- name: 'intelligentReplenishment',
- component: BlankLayout,
- meta: {
- title: '智能补货',
- icon: 'monitor',
- permission: 'M_intelligentReplenishmentList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'intelligentReplenishmentList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/intelligentReplenishment/list.vue'),
- meta: {
- title: '智能补货列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_intelligentReplenishmentList'
- }
- },
- {
- path: 'add/:sn',
- name: 'intelligentReplenishmentAdd',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/intelligentReplenishment/edit.vue'),
- meta: {
- title: '新增智能补货',
- icon: 'monitor',
- hidden: true,
- permission: 'B_intelligentReplenishment_edit'
- }
- },
- {
- path: 'edit/:sn',
- name: 'intelligentReplenishmentEdit',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/intelligentReplenishment/edit.vue'),
- meta: {
- title: '编辑智能补货',
- icon: 'monitor',
- hidden: true,
- permission: 'B_intelligentReplenishment_edit'
- }
- },
- {
- path: 'set',
- name: 'intelligentReplenishmentSet',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/intelligentReplenishment/set.vue'),
- meta: {
- title: '基础信息设置',
- icon: 'monitor',
- permission: 'B_intelligentReplenishment_set',
- replaceTab: true,
- hidden: true
- }
- },
- {
- path: 'import',
- name: 'intelligentReplenishmentImport',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/intelligentReplenishment/import.vue'),
- meta: {
- title: '确认导入',
- icon: 'monitor',
- replaceTab: true,
- hidden: true
- }
- }
- ]
- }
- ]
- },
- // 调拨管理
- {
- path: '/allocationManagement',
- redirect: '/allocationManagement/transferOut',
- component: PageView,
- meta: {
- title: '调拨管理',
- icon: 'cluster',
- permission: 'M_allocationManagement'
- },
- children: [
- {
- path: '/allocationManagement/transferOut',
- redirect: '/allocationManagement/transferOut/list',
- name: 'transferOut',
- component: BlankLayout,
- meta: {
- title: '调拨列表',
- icon: 'pull-request',
- permission: 'M_transferOutList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'transferOutList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferOut/list.vue'),
- meta: {
- title: '调拨列表',
- icon: 'pull-request',
- hidden: true,
- permission: 'M_transferOutList'
- }
- },
- {
- path: 'add/:sn/:dealerLevel',
- name: 'transferOutAdd',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferOut/edit.vue'),
- meta: {
- title: '新增调拨单',
- icon: 'pull-request',
- hidden: true,
- permission: 'M_transferOut_edit'
- }
- },
- {
- path: 'edit/:sn/:dealerLevel',
- name: 'transferOutEdit',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferOut/edit.vue'),
- meta: {
- title: '编辑调拨单',
- icon: 'pull-request',
- hidden: true,
- permission: 'M_transferOut_edit'
- }
- },
- {
- path: 'detail/:sn',
- name: 'transferOutDetail',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferOut/detail.vue'),
- meta: {
- title: '调拨单详情',
- icon: 'pull-request',
- hidden: true,
- replaceTab: true,
- permission: 'M_transferOut_detail'
- }
- }
- ]
- },
- {
- path: '/allocationManagement/transfersPrint',
- redirect: '/allocationManagement/transfersPrint/list',
- name: 'transfersPrint',
- component: BlankLayout,
- meta: {
- title: '调拨打印',
- icon: 'pull-request',
- permission: 'M_transfersPrintList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'transfersPrintList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transfersPrint/list.vue'),
- meta: {
- title: '调拨打印',
- icon: 'pull-request',
- hidden: true,
- permission: 'M_transfersPrintList'
- }
- }
- ]
- },
- {
- path: '/allocationManagement/matchSendOutOrder',
- redirect: '/allocationManagement/matchSendOutOrder/list',
- name: 'matchSendOutOrderAllocation',
- component: BlankLayout,
- meta: {
- title: '调拨发货对单',
- icon: 'vertical-align-bottom',
- permission: 'M_matchSendOutOrderAllocationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'matchSendOutOrderAllocationList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/matchSendOutOrder/list.vue'),
- meta: {
- title: '调拨发货对单',
- icon: 'vertical-align-bottom',
- hidden: true,
- permission: 'M_matchSendOutOrderAllocationList'
- }
- }
- ]
- },
- {
- path: '/allocationManagement/transferReturn',
- redirect: '/allocationManagement/transferReturn/list',
- name: 'transferReturn',
- component: BlankLayout,
- meta: {
- title: '调拨退货列表',
- icon: 'pull-request',
- permission: 'M_transferReturnList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'transferReturnList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferReturn/list.vue'),
- meta: {
- title: '调拨退货列表',
- icon: 'pull-request',
- hidden: true,
- permission: 'M_transferReturnList'
- }
- },
- {
- path: 'editGrap/:sn/:targetType',
- name: 'transferReturnGrpEdit',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferReturn/editGrp.vue'),
- meta: {
- title: '编辑调拨退货单(抓单)',
- icon: 'pull-request',
- hidden: true,
- permission: 'B_transferReturnEdit'
- }
- },
- {
- path: 'edit/:sn/:targetType/:dealerLevel',
- name: 'transferReturnEdit',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferReturn/edit.vue'),
- meta: {
- title: '编辑调拨退货单(不抓单)',
- icon: 'pull-request',
- hidden: true,
- permission: 'B_transferReturnEdit'
- }
- },
- {
- path: 'detail/:sn',
- name: 'transferReturnDetail',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferReturn/detail.vue'),
- meta: {
- title: '调拨退货单详情',
- icon: 'pull-request',
- replaceTab: true,
- hidden: true,
- permission: 'M_transferReturnDetail'
- }
- },
- {
- path: 'check/:sn/:grabFlag',
- name: 'transferReturnCheck',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/transferReturn/check.vue'),
- meta: {
- title: '调拨退货品检',
- icon: 'fund',
- replaceTab: true,
- hidden: true,
- permission: 'M_transferReturnCheck'
- }
- }
- ]
- },
- {
- path: '/allocationManagement/allocateReturnConfirmation',
- redirect: '/allocationManagement/allocateReturnConfirmation/list',
- name: 'allocateReturnConfirmation',
- component: BlankLayout,
- meta: {
- title: '调拨退货确认',
- icon: 'vertical-align-top',
- permission: 'M_allocateReturnConfirmationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'allocateReturnConfirmationList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/allocateReturnConfirmation/list.vue'),
- meta: {
- title: '调拨退货确认列表',
- icon: 'vertical-align-top',
- hidden: true,
- permission: 'M_allocateReturnConfirmationList'
- }
- }
- ]
- },
- {
- path: '/allocationManagement/allocationList',
- redirect: '/allocationManagement/allocationList/list',
- name: 'allocationList',
- component: BlankLayout,
- meta: {
- title: '调拨一览表',
- icon: 'vertical-align-top',
- permission: 'M_allocationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'allocationMainList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/allocationList/list.vue'),
- meta: {
- title: '调拨一览表',
- icon: 'vertical-align-top',
- hidden: true,
- permission: 'M_allocationList'
- }
- }
- ]
- }
- ]
- },
- // 报表
- {
- path: '/reportData',
- redirect: '/reportData/salesOrderTotal',
- component: PageView,
- meta: {
- title: '报表',
- icon: 'project',
- permission: 'M_reportData'
- },
- children: [
- {
- path: '/reportData/salesOrderTotal',
- redirect: '/reportData/salesOrderTotal/list',
- name: 'salesOrderTotal',
- component: BlankLayout,
- meta: {
- title: '销售(开单统计)',
- icon: 'profile',
- permission: 'M_salesOrderTotalList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesOrderTotalList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesOrderTotal/list.vue'),
- meta: {
- title: '销售(开单统计)列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesOrderTotalList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesDetails',
- redirect: '/reportData/salesDetails/list',
- name: 'salesDetails',
- component: BlankLayout,
- meta: {
- title: '销售明细(下推统计)',
- icon: 'profile',
- permission: 'M_salesDetailsList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesDetailsList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesDetails/list.vue'),
- meta: {
- title: '销售明细(下推统计)列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesDetailsList'
- }
- }
- ]
- },
- {
- path: '/reportData/actualSalesReport',
- redirect: '/reportData/actualSalesReport/list',
- name: 'actualSalesReport',
- component: BlankLayout,
- meta: {
- title: '实售销售报表',
- icon: 'profile',
- permission: 'M_actualSalesReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'actualSalesReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/actualSalesReport/list.vue'),
- meta: {
- title: '实售销售列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_actualSalesReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesAmountReport',
- redirect: '/reportData/salesAmountReport/list',
- name: 'salesAmountReport',
- component: BlankLayout,
- meta: {
- title: '开单销售报表',
- icon: 'profile',
- permission: 'M_salesAmountReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'salesAmountReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesAmountReport/list.vue'),
- meta: {
- title: '开单销售报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesAmountReportList'
- }
- }]
- },
- {
- path: '/reportData/salesSlipReport',
- redirect: '/reportData/salesSlipReport/list',
- name: 'salesSlipReport',
- component: BlankLayout,
- meta: {
- title: '开单销售单报表',
- icon: 'profile',
- permission: 'M_salesSlipReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'salesSlipReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesSlipReport/list.vue'),
- meta: {
- title: '开单销售单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesSlipReportList'
- }
- }]
- },
- {
- path: '/reportData/promotionSalesRealTimeReport',
- redirect: '/reportData/promotionSalesRealTimeReport/index',
- name: 'promotionSalesRealTimeReport',
- component: BlankLayout,
- meta: {
- title: '促销销售单报表',
- icon: 'profile',
- permission: 'M_promotionSalesRealTimeReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'promotionSalesRealTimeReportIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/promotionSalesRealTimeReport/index.vue'),
- meta: {
- title: '促销销售单报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_promotionSalesRealTimeReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/promotionSalesOrderReport',
- redirect: '/reportData/promotionSalesOrderReport/list',
- name: 'promotionSalesOrderReport',
- component: BlankLayout,
- meta: {
- title: '促销销售单报表(统计)',
- icon: 'profile',
- permission: 'M_promotionSalesOrderReport'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'promotionSalesOrderReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/promotionSalesOrderReport/list.vue'),
- meta: {
- title: '促销销售单报表(统计)',
- icon: 'profile',
- hidden: true,
- permission: 'M_promotionSalesOrderReportList'
- }
- }]
- },
- {
- path: '/reportData/tireSalesReport',
- redirect: '/reportData/tireSalesReport/list',
- name: 'tireSalesReport',
- component: BlankLayout,
- meta: {
- title: '轮胎统计报表',
- icon: 'profile',
- permission: 'M_tireSalesReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'tireSalesReportIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/tireSalesReport/list.vue'),
- meta: {
- title: '轮胎统计报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_tireSalesReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/allocationOrderTotal',
- redirect: '/reportData/allocationOrderTotal/list',
- name: 'allocationOrderTotal',
- component: BlankLayout,
- meta: {
- title: '调拨开单统计',
- icon: 'profile',
- permission: 'M_allocationOrderTotalList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'allocationOrderTotalList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/allocationOrderTotal/list.vue'),
- meta: {
- title: '调拨开单列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_allocationOrderTotalList'
- }
- }
- ]
- },
- {
- path: '/reportData/allocationDetails',
- redirect: '/reportData/allocationDetails/list',
- name: 'allocationDetails',
- component: BlankLayout,
- meta: {
- title: '调拨明细',
- icon: 'profile',
- permission: 'M_allocationDetailsList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'allocationDetailsList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/allocationDetails/list.vue'),
- meta: {
- title: '调拨明细列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_allocationDetailsList'
- }
- }
- ]
- },
- {
- path: '/reportData/urchaseReturn',
- redirect: '/reportData/urchaseReturn/list',
- name: 'urchaseReturnList',
- component: BlankLayout,
- meta: {
- title: '采购退货单报表',
- icon: 'profile',
- permission: 'M_urchaseReturn'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'urchaseReturnList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/urchaseReturn/list.vue'),
- meta: {
- title: '采购退货单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_urchaseReturnList'
- }
- }
- ]
- },
- {
- path: '/reportData/urchaseDetailReturn',
- redirect: '/reportData/urchaseDetailReturn/detailList',
- name: 'urchaseDetailReturnList',
- component: BlankLayout,
- meta: {
- title: '采购退货单明细报表',
- icon: 'profile',
- permission: 'M_urchaseDetailReturn'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'detailList',
- name: 'urchaseDetailReturnList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/urchaseDetailReturn/detailList.vue'),
- meta: {
- title: '采购退货单明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_urchaseDetailReturnList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesReturnsReport',
- redirect: '/reportData/salesReturnsReport/list',
- name: 'salesReturnsReport',
- component: BlankLayout,
- meta: {
- title: '销售退货单报表',
- icon: 'profile',
- permission: 'M_salesReturnsReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesReturnsReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesReturnsReport/list.vue'),
- meta: {
- title: '销售退货单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesReturnsReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesReturnDetailReport',
- redirect: '/reportData/salesReturnDetailReport/list',
- name: 'salesReturnDetailReport',
- component: BlankLayout,
- meta: {
- title: '销售退货明细报表',
- icon: 'profile',
- permission: 'M_salesReturnDetailReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'salesReturnDetailReportList',
- component: () => import(/* webpackChunkName: "reportData" */
- '@/views/reportData/salesReturnDetailReport/list.vue'),
- meta: {
- title: '销售退货明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesReturnDetailReportList'
- }
- }]
- },
- {
- path: '/reportData/transferReturnReport',
- redirect: '/reportData/transferReturnReport/list',
- name: 'transferReturnReport',
- component: BlankLayout,
- meta: {
- title: '调拨退货单报表',
- icon: 'profile',
- permission: 'M_transferReturnReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'transferReturnReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/transferReturnReport/list.vue'),
- meta: {
- title: '调拨退货单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_transferReturnReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/transferReturnDetailReport',
- redirect: '/reportData/transferReturnDetailReport/list',
- name: 'transferReturnDetailReport',
- component: BlankLayout,
- meta: {
- title: '调拨退货单明细报表',
- icon: 'profile',
- permission: 'M_transferReturnDetailReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'transferReturnDetailReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/transferReturnDetailReport/list.vue'),
- meta: {
- title: '调拨退货单明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_transferReturnDetailReportList'
- }
- }]
- },
- {
- path: '/reportData/salesReturnReport',
- redirect: '/reportData/salesReturnReport/list',
- name: 'salesReturnReport',
- component: BlankLayout,
- meta: {
- title: '实售退货报表',
- icon: 'profile',
- permission: 'M_salesReturnReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesReturnReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesReturnReport/list.vue'),
- meta: {
- title: '实售退货列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesReturnReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/billingReturnReport',
- redirect: '/reportData/billingReturnReport/list',
- name: 'billingReturnReport',
- component: BlankLayout,
- meta: {
- title: '开单退货报表',
- icon: 'profile',
- permission: 'M_billingReturnReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'billingReturnReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/billingReturnReport/list.vue'),
- meta: {
- title: '开单退货列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_billingReturnReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/returnSlipReport',
- redirect: '/reportData/returnSlipReport/list',
- name: 'returnSlipReport',
- component: BlankLayout,
- meta: {
- title: '开单退货单报表',
- icon: 'profile',
- permission: 'M_returnSlipReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'returnSlipReportList',
- component: () => import(/* webpackChunkName: "reportData" */
- '@/views/reportData/returnSlipReport/list.vue'),
- meta: {
- title: '开单退货单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_returnSlipReportList'
- }
- }]
- },
- {
- path: '/reportData/billingBackReport',
- redirect: '/reportData/billingBackReport/list',
- name: 'billingBackReport',
- component: BlankLayout,
- meta: {
- title: '开单采退报表',
- icon: 'profile',
- permission: 'M_billingBackReport'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'billingBackReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/billingBackReport/list.vue'),
- meta: {
- title: '开单采退报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_billingBackReportList'
- }
- }]
- },
- {
- path: '/reportData/billingOrderReport',
- redirect: '/reportData/billingOrderReport/list',
- name: 'billingOrderReport',
- component: BlankLayout,
- meta: {
- title: '开单采退单报表',
- icon: 'profile',
- permission: 'M_billingOrderReport'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'billingOrderReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/billingOrderReport/list.vue'),
- meta: {
- title: '开单采退单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_billingOrderReportList'
- }
- }]
- },
- {
- path: '/reportData/hPriceDifferenceDetailReport',
- redirect: '/reportData/hPriceDifferenceDetailReport/list',
- name: 'hPriceDifferenceDetailReport',
- component: BlankLayout,
- meta: {
- title: '总部差价明细报表',
- icon: 'profile',
- permission: 'M_hPriceDifferenceDetailReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'hPriceDifferenceDetailReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/hPriceDifferenceDetailReport/list.vue'),
- meta: {
- title: '总部差价明细列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_hPriceDifferenceDetailReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/priceDifferenceDetailReport',
- redirect: '/reportData/priceDifferenceDetailReport/list',
- name: 'priceDifferenceDetailReport',
- component: BlankLayout,
- meta: {
- title: '差价明细报表',
- icon: 'profile',
- permission: 'M_priceDifferenceDetailReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'priceDifferenceDetailReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/priceDifferenceDetailReport/list.vue'),
- meta: {
- title: '差价明细列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_priceDifferenceDetailReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/regionTypeSalesReport',
- redirect: '/reportData/regionTypeSalesReport/list',
- name: 'regionTypeSalesReport',
- component: BlankLayout,
- meta: {
- title: '各分区品类实售明细',
- icon: 'profile',
- permission: 'M_regionTypeSalesReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'regionTypeSalesReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/regionTypeSalesReport/list.vue'),
- meta: {
- title: '各分区品类实售明细',
- icon: 'profile',
- hidden: true,
- permission: 'M_regionTypeSalesReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/warehousingOrder',
- redirect: '/reportData/warehousingOrder/list',
- name: 'warehousingOrder',
- component: BlankLayout,
- meta: {
- title: '入库单报表',
- icon: 'profile',
- permission: 'M_warehousingOrderList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehousingOrderList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/warehousingOrder/list.vue'),
- meta: {
- title: '入库单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_warehousingOrderList'
- }
- }
- ]
- },
- {
- path: '/reportData/warehousingOrderDetail',
- redirect: '/reportData/warehousingOrderDetail/list',
- name: 'warehousingOrderDetail',
- component: BlankLayout,
- meta: {
- title: '入库单明细报表',
- icon: 'profile',
- permission: 'M_warehousingOrderDetailList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehousingOrderDetailList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/warehousingOrderDetail/list.vue'),
- meta: {
- title: '入库单明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_warehousingOrderDetailList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesPresentation',
- redirect: '/reportData/salesPresentation/list',
- name: 'salesPresentation',
- component: BlankLayout,
- meta: {
- title: '销售交单报表',
- icon: 'profile',
- permission: 'M_salesPresentationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesPresentationList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesPresentation/list.vue'),
- meta: {
- title: '销售交单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesPresentationList'
- }
- }
- ]
- },
- {
- path: '/reportData/allocationPresentation',
- redirect: '/reportData/allocationPresentation/list',
- name: 'allocationPresentation',
- component: BlankLayout,
- meta: {
- title: '调拨交单报表',
- icon: 'profile',
- permission: 'M_allocationPresentationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'allocationPresentationList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/allocationPresentation/list.vue'),
- meta: {
- title: '调拨交单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_allocationPresentationList'
- }
- }
- ]
- },
- {
- path: '/reportData/returnGoodsPresentation',
- redirect: '/reportData/returnGoodsPresentation/list',
- name: 'returnGoodsPresentation',
- component: BlankLayout,
- meta: {
- title: '退货交单报表',
- icon: 'profile',
- permission: 'M_returnGoodsPresentationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'returnGoodsPresentationList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/returnGoodsPresentation/list.vue'),
- meta: {
- title: '退货交单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_returnGoodsPresentationList'
- }
- }
- ]
- },
- {
- path: '/reportData/expenseAccountBearerReport',
- redirect: '/reportData/expenseAccountBearerReport/list',
- name: 'expenseAccountBearerReport',
- component: BlankLayout,
- meta: {
- title: '费用汇总报表(按承担方)',
- icon: 'profile',
- permission: 'M_expenseAccountBearerReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'expenseAccountBearerReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/expenseAccountReport/bearerList.vue'),
- meta: {
- title: '费用汇总报表(按承担方)',
- icon: 'profile',
- hidden: true,
- permission: 'M_expenseAccountBearerReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/expenseAccountCategoryReport',
- redirect: '/reportData/expenseAccountCategoryReport/list',
- name: 'expenseAccountCategoryReport',
- component: BlankLayout,
- meta: {
- title: '费用汇总报表(按品类)',
- icon: 'profile',
- permission: 'M_expenseAccountCategoryReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'expenseAccountCategoryReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/expenseAccountReport/categoryList.vue'),
- meta: {
- title: '费用汇总报表(按品类)',
- icon: 'profile',
- hidden: true,
- permission: 'M_expenseAccountCategoryReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/receivedSendStorageReport',
- redirect: '/reportData/receivedSendStorageReport/index',
- name: 'receivedSendStorageReport',
- component: BlankLayout,
- meta: {
- title: '收发存报表',
- icon: 'profile',
- permission: 'M_receivedSendStorageReport'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'receivedSendStorageReportIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/receivedSendStorageReport/index.vue'),
- meta: {
- title: '收发存报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_receivedSendStorageReportList'
- }
- }
- ]
- },
- {
- path: '/productRebateReport/index',
- redirect: '/productRebateReport/index/list',
- name: 'productRebateReportList',
- component: BlankLayout,
- meta: {
- title: '产品返利明细表',
- icon: 'profile',
- permission: 'M_productRebateReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productRebateReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/productRebateReport/index.vue'),
- meta: {
- title: '产品返利明细表',
- icon: 'profile',
- hidden: true,
- permission: 'M_productRebateReportList'
- }
- }
- ]
- }
- // {
- // path: '/reportData/allCountryCostReport',
- // redirect: '/reportData/allCountryCostReport/list',
- // name: 'allCountryCostReport',
- // component: BlankLayout,
- // meta: {
- // title: '全国费用统计报表',
- // icon: 'profile'
- // // permission: 'M_nationalCustomerCostStatisticsList'
- // },
- // hideChildrenInMenu: true,
- // children: [
- // {
- // path: 'list',
- // name: 'allCountryCostReportList',
- // component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/allCountryCostReport/list.vue'),
- // meta: {
- // title: '全国费用统计报表',
- // icon: 'profile',
- // hidden: true
- // // permission: 'M_nationalCustomerCostStatisticsList'
- // }
- // }
- // ]
- // }
- ]
- },
- // 数据导出
- {
- path: '/dataExport',
- redirect: '/dataExport/exportSales',
- component: PageView,
- meta: {
- title: '数据导出',
- icon: 'database',
- permission: 'M_dataExport'
- },
- children: [
- {
- path: '/dataExport/exportSales',
- redirect: '/dataExport/exportSales/list',
- name: 'exportSales',
- component: BlankLayout,
- meta: {
- title: '导出销售',
- icon: 'gold',
- permission: 'M_exportSales'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'exportSalesList',
- component: () => import(/* webpackChunkName: "dataExport" */ '@/views/dataExport/exportSales/list.vue'),
- meta: {
- title: '导出销售',
- icon: 'gold',
- hidden: true,
- permission: 'M_exportSales'
- }
- }
- ]
- },
- {
- path: '/dataExport/exportCheck',
- redirect: '/dataExport/exportCheck/list',
- name: 'exportCheck',
- component: BlankLayout,
- meta: {
- title: '导出盘点',
- icon: 'gold',
- permission: 'M_exportCheck'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'exportCheckList',
- component: () => import(/* webpackChunkName: "dataExport" */ '@/views/dataExport/exportCheck/list.vue'),
- meta: {
- title: '导出盘点',
- icon: 'gold',
- hidden: true,
- permission: 'M_exportCheck'
- }
- }
- ]
- }
- ]
- },
- // 产品管理
- {
- path: '/productManagement',
- redirect: '/productManagement/productInfo',
- component: PageView,
- meta: {
- title: '产品管理',
- icon: 'shopping',
- permission: 'M_productManagement'
- },
- children: [
- {
- path: '/productManagement/productInfo',
- redirect: '/productManagement/productInfo/list',
- name: 'productInfo',
- component: BlankLayout,
- meta: {
- title: '产品列表',
- icon: 'gold',
- permission: 'M_productInfoList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productInfoList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productInfo/list.vue'),
- meta: {
- title: '产品列表',
- icon: 'gold',
- hidden: true,
- permission: 'M_productInfoList'
- }
- },
- {
- path: 'add',
- name: 'productInfoAdd',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productInfo/edit.vue'),
- meta: {
- title: '新增产品',
- icon: 'gold',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'edit/:id/:sn',
- name: 'productInfoEdit',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productInfo/edit.vue'),
- meta: {
- title: '编辑产品',
- icon: 'gold',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- },
- {
- path: '/productManagement/productPricing',
- redirect: '/productManagement/productPricing/list',
- name: 'productPricing',
- component: BlankLayout,
- meta: {
- title: '产品定价',
- icon: 'transaction',
- permission: 'M_productPricingList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productPricingList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productPricing/list.vue'),
- meta: {
- title: '产品定价列表',
- icon: 'transaction',
- hidden: true,
- permission: 'M_productPricingList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productLaunchAudit',
- redirect: '/productManagement/productLaunchAudit/list',
- name: 'productLaunchAudit',
- component: BlankLayout,
- meta: {
- title: '产品上线审核',
- icon: 'rise',
- permission: 'M_productLaunchAuditList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productLaunchAuditList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productLaunchAudit/list.vue'),
- meta: {
- title: '产品上线审核列表',
- icon: 'rise',
- hidden: true,
- permission: 'M_productLaunchAuditList'
- }
- }
- ]
- },
- {
- path: '/productManagement/newProduct',
- redirect: '/productManagement/newProduct/list/onlineInfo/1',
- name: 'productLaunchInfo',
- component: BlankLayout,
- meta: {
- title: '产品上线信息',
- icon: 'rise',
- permission: 'M_productLaunchInfoList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list/:type/:onlineFalg',
- name: 'productLaunchInfoList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/newProduct/list.vue'),
- meta: {
- title: '产品上线信息列表',
- icon: 'rise',
- hidden: true,
- permission: 'M_productLaunchInfoList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productOfflineAudit',
- redirect: '/productManagement/productOfflineAudit/list',
- name: 'productOfflineAudit',
- component: BlankLayout,
- meta: {
- title: '产品下线审核',
- icon: 'fall',
- permission: 'M_productOfflineAuditList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productOfflineAuditList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productOfflineAudit/list.vue'),
- meta: {
- title: '产品下线审核列表',
- icon: 'fall',
- hidden: true,
- permission: 'M_productOfflineAuditList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productNotOnline',
- redirect: '/productManagement/productNotOnline/list',
- name: 'productNotOnline',
- component: BlankLayout,
- meta: {
- title: '产品状态信息',
- icon: 'fall',
- permission: 'M_productNotOnlineList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productNotOnlineList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productNotOnline/list.vue'),
- meta: {
- title: '产品状态信息列表',
- icon: 'fall',
- hidden: true,
- permission: 'M_productNotOnlineList'
- }
- }
- ]
- },
- {
- path: '/productManagement/priceChangeRecord',
- redirect: '/productManagement/priceChangeRecord/list',
- name: 'priceChangeRecord',
- component: BlankLayout,
- meta: {
- title: '价格变更记录',
- icon: 'profile',
- permission: 'M_priceChangeRecordList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'priceChangeRecordList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/priceChangeRecord/list.vue'),
- meta: {
- title: '价格变更记录列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_priceChangeRecordList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productUniversal',
- redirect: '/productManagement/productUniversal/list',
- name: 'productUniversal',
- component: BlankLayout,
- meta: {
- title: '通用产品管理',
- icon: 'deployment-unit',
- permission: 'M_productUniversalList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productUniversalList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productUniversal/list.vue'),
- meta: {
- title: '通用产品列表',
- icon: 'deployment-unit',
- hidden: true,
- permission: 'M_productUniversalList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productLevel',
- redirect: '/productManagement/productLevel/list',
- name: 'productLevel',
- component: BlankLayout,
- meta: {
- title: '产品级别管理',
- icon: 'fund',
- permission: 'M_productLevelList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productLevelList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productLevel/list.vue'),
- meta: {
- title: '产品级别列表',
- icon: 'fund',
- hidden: true,
- permission: 'M_productLevelList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productBrand',
- redirect: '/productManagement/productBrand/list',
- name: 'productBrand',
- component: BlankLayout,
- meta: {
- title: '产品品牌管理',
- icon: 'file-ppt',
- permission: 'M_productBrandList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productBrandList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productBrand/list.vue'),
- meta: {
- title: '产品品牌列表',
- icon: 'file-ppt',
- hidden: true,
- permission: 'M_productBrandList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productCategory',
- redirect: '/productManagement/productCategory/list',
- name: 'productCategory',
- component: BlankLayout,
- meta: {
- title: '产品分类管理',
- icon: 'radar-chart',
- permission: 'M_productCategoryList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productCategoryList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productCategory/list.vue'),
- meta: {
- title: '产品分类列表',
- icon: 'radar-chart',
- hidden: true,
- permission: 'M_productCategoryList'
- }
- }
- ]
- },
- {
- path: '/productManagement/shelfNoManage',
- redirect: '/productManagement/shelfNoManage/list',
- name: 'shelfNoManage',
- component: BlankLayout,
- meta: {
- title: '货位编号管理',
- icon: 'radar-chart',
- permission: 'M_shelfNoManageList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'shelfNoManageList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/shelfNoManage/list.vue'),
- meta: {
- title: '货位编号管理',
- icon: 'radar-chart',
- hidden: true,
- permission: 'M_shelfNoManageList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productSourcePath',
- redirect: '/productManagement/productSourcePath/list',
- name: 'productSourcePath',
- component: BlankLayout,
- meta: {
- title: '唯一码追溯列表',
- icon: 'radar-chart',
- permission: 'M_productSourcePathList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productSourcePathList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productSourcePath/list.vue'),
- meta: {
- title: '唯一码追溯列表',
- icon: 'radar-chart',
- hidden: true,
- permission: 'M_productSourcePathList'
- }
- }
- ]
- }
- ]
- },
- // 经销商管理
- {
- path: '/dealerManagement',
- redirect: '/dealerManagement/marketingDivisionSet',
- component: PageView,
- meta: {
- title: '经销商管理',
- icon: 'idcard',
- permission: 'M_dealerManagement'
- },
- children: [
- {
- path: '/dealerManagement/merchantInfoManagement',
- redirect: '/dealerManagement/merchantInfoManagement/list',
- name: 'merchantInfoManagement',
- component: BlankLayout,
- meta: {
- title: '经销商资料管理',
- icon: 'file-text',
- permission: 'M_merchantInfoManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'merchantInfoManagementList',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/merchantInfoManagement/list.vue'),
- meta: {
- title: '经销商资料列表',
- icon: 'file-text',
- hidden: true,
- permission: 'M_merchantInfoManagementList'
- }
- },
- {
- path: 'add',
- name: 'merchantInfoManagementAdd',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/merchantInfoManagement/edit.vue'),
- meta: {
- title: '新增经销商',
- icon: 'file-text',
- hidden: true
- }
- },
- {
- path: 'edit/:id',
- name: 'merchantInfoManagementEdit',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/merchantInfoManagement/edit.vue'),
- meta: {
- title: '编辑经销商',
- icon: 'file-text',
- hidden: true
- }
- },
- {
- path: 'permissionSetting/:sn/:name/:dealerLevel',
- name: 'merchantInfoManagementSet',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/merchantInfoManagement/permissionSettingNew.vue'),
- meta: {
- title: '经销权设置',
- icon: 'file-text',
- replaceTab: true,
- hidden: true
- }
- },
- {
- path: 'rebateBinding/:sn',
- name: 'rebateBinding',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/rebateBinding/list.vue'),
- meta: {
- title: '差价设置',
- icon: 'file-text',
- replaceTab: true,
- hidden: true
- }
- }
- ]
- },
- {
- path: '/dealerManagement/dealerAccountManagement',
- redirect: '/dealerManagement/dealerAccountManagement/list',
- name: 'dealerAccountManagement',
- component: BlankLayout,
- meta: {
- title: '经销商账号管理',
- icon: 'team',
- permission: 'M_dealerAccountManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'dealerAccountManagementList',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/dealerAccountManagement/list.vue'),
- meta: {
- title: '经销商账号列表',
- icon: 'team',
- hidden: true,
- permission: 'M_dealerAccountManagementList'
- }
- }
- ]
- },
- // {
- // path: '/dealerManagement/dealerRelationshipBinding',
- // redirect: '/dealerManagement/dealerRelationshipBinding/list',
- // name: 'dealerRelationshipBinding',
- // component: BlankLayout,
- // meta: {
- // title: '经销商关系绑定',
- // icon: 'share-alt',
- // permission: 'M_dealerRelationshipBindingList'
- // },
- // hideChildrenInMenu: true,
- // children: [
- // {
- // path: 'list',
- // name: 'dealerRelationshipBindingList',
- // component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/dealerRelationshipBinding/list.vue'),
- // meta: {
- // title: '经销商关系绑定列表',
- // icon: 'share-alt',
- // hidden: true,
- // permission: 'M_dealerRelationshipBindingList'
- // }
- // }
- // ]
- // },
- // {
- // path: '/dealerManagement/rebateSettings',
- // redirect: '/dealerManagement/rebateSettings/list',
- // name: 'rebateSettings',
- // component: BlankLayout,
- // meta: {
- // title: '差价归属设置',
- // icon: 'stock',
- // permission: 'M_rebateSettingsList'
- // },
- // hideChildrenInMenu: true,
- // children: [
- // {
- // path: 'list',
- // name: 'rebateSettingsList',
- // component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/rebateSettings/list.vue'),
- // meta: {
- // title: '差价归属设置列表',
- // icon: 'stock',
- // hidden: true,
- // permission: 'M_rebateSettingsList'
- // }
- // }
- // ]
- // },
- {
- path: '/dealerManagement/provincialWarehouseManagement',
- redirect: '/dealerManagement/provincialWarehouseManagement/list',
- name: 'provincialWarehouse',
- component: BlankLayout,
- meta: {
- title: '省仓管理',
- icon: 'share-alt',
- permission: 'M_provincialWarehouse'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'provincialWarehouseList',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/provincialWarehouseManagement/list.vue'),
- meta: {
- title: '省仓管理列表',
- icon: 'share-alt',
- hidden: true,
- permission: 'M_provincialWarehouseList'
- }
- },
- {
- path: 'relatedDealers/:sn/:name',
- name: 'relatedDealersList',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/provincialWarehouseManagement/relatedDealersList.vue'),
- meta: {
- title: '省仓关联经销商',
- icon: 'share-alt',
- hidden: true,
- replaceTab: true,
- permission: 'M_relatedDealersList'
- }
- }
- ]
- },
- {
- path: '/dealerManagement/marketingDivisionSetNew',
- redirect: '/dealerManagement/marketingDivisionSetNew/list',
- name: 'marketingDivisionSetNew',
- component: BlankLayout,
- meta: {
- title: '营销分区设置',
- icon: 'setting',
- permission: 'M_marketingDivisionSetList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'marketingDivisionSetNewList',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/marketingDivisionSetNew/list.vue'),
- meta: {
- title: '营销分区列表',
- icon: 'setting',
- hidden: true,
- permission: 'M_marketingDivisionSetList'
- }
- }
- ]
- },
- {
- path: '/dealerManagement/businessOwnerSettings',
- redirect: '/dealerManagement/businessOwnerSettings/list',
- name: 'businessOwnerSettings',
- component: BlankLayout,
- meta: {
- title: '数据权限配置',
- icon: 'stock',
- permission: 'M_businessOwnerSettings'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'businessOwnerSettingsList',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/businessOwnerSettings/list.vue'),
- meta: {
- title: '数据权限配置列表',
- icon: 'stock',
- hidden: true,
- permission: 'M_businessOwnerSettingsList'
- }
- },
- {
- path: 'settingsIndex',
- name: 'categorySet',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/dealerManagement/businessOwnerSettings/settingsIndex.vue'),
- meta: {
- title: '管辖品类权限设置',
- icon: 'user',
- hidden: true,
- replaceTab: true,
- permission: 'M_settingsIndex'
- }
- }
- ]
- },
- {
- path: '/dealerManagement/dealerZoneSearch',
- redirect: '/dealerManagement/dealerZoneSearch/list',
- name: 'dealerZoneSearch',
- component: BlankLayout,
- meta: {
- title: '经销商所属分区查询',
- icon: 'setting',
- permission: 'M_dealerZoneSearch'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'dealerZoneSearchList',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/dealerManagement/dealerZoneSearch/list.vue'),
- meta: {
- title: '经销商所属分区查询',
- icon: 'setting',
- hidden: true,
- permission: 'M_dealerZoneSearchList'
- }
- }
- ]
- }
- ]
- },
- // 供应商管理
- {
- path: '/supplierManagement',
- redirect: '/supplierManagement/supplierInfo',
- component: PageView,
- meta: {
- title: '供应商管理',
- icon: 'team',
- permission: 'M_supplierManagement'
- },
- children: [
- {
- path: '/supplierManagement/supplierInfo',
- redirect: '/supplierManagement/supplierInfo/list',
- name: 'supplierInfo',
- component: BlankLayout,
- meta: {
- title: '供应商列表',
- icon: 'team',
- permission: 'M_supplierInfoList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'supplierInfoList',
- component: () => import(/* webpackChunkName: "supplierManagement" */ '@/views/supplierManagement/supplierInfo/list.vue'),
- meta: {
- title: '供应商列表',
- icon: 'team',
- hidden: true,
- permission: 'M_supplierInfoList'
- }
- },
- {
- path: 'add',
- name: 'supplierInfoAdd',
- component: () => import(/* webpackChunkName: "supplierManagement" */ '@/views/supplierManagement/supplierInfo/edit.vue'),
- meta: {
- title: '新增供应商',
- icon: 'team',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'edit/:id',
- name: 'supplierInfoEdit',
- component: () => import(/* webpackChunkName: "supplierManagement" */ '@/views/supplierManagement/supplierInfo/edit.vue'),
- meta: {
- title: '编辑供应商',
- icon: 'team',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'associatedProduct/:sn/:name',
- name: 'associatedProduct',
- component: () => import(/* webpackChunkName: "supplierManagement" */ '@/views/supplierManagement/associatedProduct/add.vue'),
- meta: {
- title: '关联产品',
- icon: 'team',
- replaceTab: true,
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- },
- {
- path: '/supplierManagement/costSetting',
- redirect: '/supplierManagement/costSetting/list',
- name: 'costSetting',
- component: BlankLayout,
- meta: {
- title: '成本设置',
- icon: 'build',
- permission: 'M_costSettingList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'costSettingList',
- component: () => import(/* webpackChunkName: "supplierManagement" */ '@/views/supplierManagement/costSetting/list.vue'),
- meta: {
- title: '成本设置列表',
- icon: 'build',
- hidden: true
- }
- }
- ]
- },
- {
- path: '/supplierManagement/costSetRecord',
- redirect: '/supplierManagement/costSetRecord/list',
- name: 'costSetRecord',
- component: BlankLayout,
- meta: {
- title: '成本变更记录',
- icon: 'build',
- permission: 'M_costSetRecordList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'costSetRecordList',
- component: () => import(/* webpackChunkName: "supplierManagement" */ '@/views/supplierManagement/costSetRecord/list.vue'),
- meta: {
- title: '成本变更记录列表',
- icon: 'build',
- hidden: true
- }
- }
- ]
- },
- {
- path: '/supplierManagement/associatedProductDetails',
- redirect: '/supplierManagement/associatedProductDetails/list',
- name: 'associatedProductDetails',
- component: BlankLayout,
- meta: {
- title: '关联产品明细表',
- icon: 'build',
- permission: 'M_associatedProductDetailsList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'associatedProductDetailsList',
- component: () => import(/* webpackChunkName: "supplierManagement" */ '@/views/supplierManagement/associatedProductDetails/list.vue'),
- meta: {
- title: '关联产品明细列表',
- icon: 'build',
- hidden: true,
- permission: 'M_associatedProductDetailsList'
- }
- }
- ]
- }
- ]
- },
- // 促销管理
- {
- path: '/promotionRulesManagement',
- redirect: '/promotionRulesManagement/promotionRules',
- component: PageView,
- meta: {
- title: '促销管理',
- icon: 'rocket',
- permission: 'M_promotionRulesManagement'
- },
- children: [
- {
- path: '/promotionRulesManagement/promotionManagement',
- redirect: '/promotionRulesManagement/promotionManagement/list',
- name: 'promotionManagement',
- component: BlankLayout,
- meta: {
- title: '修理厂促销',
- icon: 'file-ppt',
- permission: 'M_promotionManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'promotionManagementList',
- component: () => import(/* webpackChunkName: "promotionRulesManagement" */ '@/views/promotionRulesManagement/promotionManagement/list.vue'),
- meta: {
- title: '修理厂促销列表',
- icon: 'file-ppt',
- hidden: true,
- permission: 'M_promotionManagementList'
- }
- }
- ]
- },
- {
- path: '/promotionRulesManagement/dealerPromotions',
- redirect: '/promotionRulesManagement/dealerPromotions/list',
- name: 'dealerPromotionManagement',
- component: BlankLayout,
- meta: {
- title: '经销商促销',
- icon: 'setting',
- permission: 'M_dealerPromotionManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'dealerPromotionManagementList',
- component: () => import(/* webpackChunkName: "dealerManagement" */ '@/views/promotionRulesManagement/dealerPromotions/list.vue'),
- meta: {
- title: '经销商促销',
- icon: 'setting',
- hidden: true,
- permission: 'M_dealerPromotionManagementList'
- }
- },
- {
- path: 'detail',
- name: 'dealerPromotionManagementDetail',
- component: () => import(/* webpackChunkName: "promotionRulesManagement" */ '@/views/promotionRulesManagement/dealerPromotions/detail.vue'),
- meta: {
- title: '促销活动详情',
- icon: 'thunderbolt',
- hidden: true
- }
- },
- {
- path: 'ruleSet',
- name: 'dealerPromotionManagementRule',
- component: () => import(/* webpackChunkName: "promotionRulesManagement" */ '@/views/promotionRulesManagement/dealerPromotions/detail.vue'),
- meta: {
- title: '促销规则设置',
- icon: 'thunderbolt',
- replaceTab: true,
- hidden: true
- }
- }
- ]
- }
- ]
- },
- // 大屏数据
- {
- path: '/bigStatistics',
- redirect: '/bigStatistics/realTimeSalesReport',
- component: PageView,
- meta: {
- title: '数据统计',
- icon: 'desktop',
- permission: 'M_bigScreenStatistics'
- },
- children: [
- {
- path: '/bigStatistics/realTimeSalesReport',
- redirect: '/bigStatistics/realTimeSalesReport/index',
- name: 'bigRealTimeSalesReport',
- component: BigScreen,
- meta: {
- title: '实时销售看板',
- icon: 'deployment-unit',
- permission: 'M_realTimeSalesReportIndex'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'realTimeSalesReportIndex',
- component: () => import(/* webpackChunkName: "bigScreen" */ '@/views/bigScreen/realTimeSalesReport/index'),
- meta: {
- title: '实时销售看板'
- }
- }
- ]
- },
- {
- path: '/bigStatistics/fPanalysisReport',
- redirect: '/bigStatistics/fPanalysisReport/index',
- name: 'bigfPanalysisReport',
- component: BigScreen,
- meta: {
- title: '加盟商/产品分析',
- icon: 'interaction',
- permission: 'M_fPanalysisReportIndex'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'fPanalysisReportIndex',
- component: () => import(/* webpackChunkName: "bigScreen" */ '@/views/bigScreen/fPanalysisReport/index'),
- meta: {
- title: '加盟商/产品分析'
- }
- }
- ]
- }
- ]
- },
- // 基础设置
- {
- path: '/basicData',
- redirect: '/basicData/warehouse',
- component: PageView,
- meta: {
- title: '基础设置',
- icon: 'pushpin',
- permission: 'M_basicData'
- },
- children: [
- {
- path: '/basicData/warehouse',
- redirect: '/basicData/warehouse/list',
- name: 'warehouse',
- component: BlankLayout,
- meta: {
- title: '仓库管理',
- icon: 'deployment-unit',
- permission: 'M_warehouseList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehouseList',
- component: () => import(/* webpackChunkName: "basicData" */ '@/views/basicData/warehouse/list.vue'),
- meta: {
- title: '仓库列表',
- icon: 'deployment-unit',
- hidden: true,
- permission: 'M_warehouseList'
- }
- },
- {
- path: '/basicData/storingLocation/:sn',
- name: 'storingLocationList',
- component: () => import(/* webpackChunkName: "basicData" */ '@/views/basicData/warehouse/storingLocation/list.vue'),
- meta: {
- title: '仓位列表',
- icon: 'deployment-unit',
- replaceTab: true,
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- },
- {
- path: '/basicData/transferTypeManagement',
- redirect: '/basicData/transferTypeManagement/list',
- name: 'transferTypeManagement',
- component: BlankLayout,
- meta: {
- title: '调拨类型管理',
- icon: 'interaction',
- permission: 'M_transferTypeManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'transferTypeManagementList',
- component: () => import(/* webpackChunkName: "basicData" */ '@/views/basicData/transferTypeManagement/list.vue'),
- meta: {
- title: '调拨类型列表',
- icon: 'interaction',
- hidden: true,
- permission: 'M_transferTypeManagementList'
- }
- }
- ]
- }
- ]
- },
- // 权限管理
- {
- path: '/auth',
- redirect: '/auth/user',
- component: PageView,
- meta: {
- title: '权限管理',
- icon: 'lock',
- permission: 'M_auth_0'
- },
- children: [
- {
- path: '/auth/user',
- redirect: '/auth/user/list',
- name: 'powerUser',
- component: BlankLayout,
- meta: {
- title: '用户管理',
- icon: 'user',
- permission: 'M_userList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'powerUserList',
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/user/userList.vue'),
- meta: {
- title: '用户管理',
- icon: 'user',
- hidden: true,
- permission: 'M_userList'
- }
- }
- ]
- },
- {
- path: '/auth/role',
- redirect: '/auth/role/list',
- name: 'powerRole',
- component: BlankLayout,
- meta: {
- title: '角色管理',
- icon: 'solution',
- permission: 'M_roleList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'powerRoleList',
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/role/roleList.vue'),
- meta: {
- title: '角色管理',
- icon: 'solution',
- hidden: true,
- permission: 'M_roleList'
- }
- }
- ]
- },
- {
- path: '/auth/adminMenus',
- redirect: '/auth/adminMenus/list',
- name: 'adminMenus',
- component: BlankLayout,
- meta: {
- title: '菜单管理',
- icon: 'appstore',
- permission: 'M_menuList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'adminMenusList',
- component: () => import(/* webpackChunkName: "auth" */ '@/views/bnSetting/menu/adminMenus.vue'),
- meta: {
- title: '菜单管理',
- icon: 'appstore',
- hidden: true,
- permission: 'M_menuList'
- }
- }
- ]
- }
- ]
- },
- // 系统设置
- {
- path: '/setting',
- redirect: '/setting/dataDictionary',
- component: PageView,
- meta: {
- title: '系统设置',
- icon: 'setting',
- permission: 'M_systemSet'
- },
- children: [
- {
- path: '/setting/dataDictionary',
- redirect: '/setting/dataDictionary/list',
- name: 'dataDictionary',
- component: BlankLayout,
- meta: {
- title: '数据字典管理',
- icon: 'database',
- permission: 'M_dataD_lookup'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'powerDD',
- component: () => import(/* webpackChunkName: "setting" */ '@/views/power/dataDictionary/dataDictionary.vue'),
- meta: {
- title: '数据字典管理',
- icon: 'database',
- hidden: true,
- permission: 'M_dataD_lookup'
- }
- }
- ]
- },
- {
- path: '/setting/OperateJournal',
- redirect: '/setting/OperateJournal/list',
- name: 'OperateJournal',
- component: BlankLayout,
- meta: {
- title: '操作日志',
- icon: 'read',
- permission: 'M_OperateJournalList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'powerOperateJournal',
- component: () => import(/* webpackChunkName: "setting" */ '@/views/power/OperateJournal/OperateJournal.vue'),
- meta: {
- title: '操作日志',
- icon: 'read',
- permission: 'M_OperateJournalList'
- }
- }
- ]
- },
- {
- path: '/setting/noticeManagement',
- redirect: '/setting/noticeManagement/list',
- name: 'noticeManagement',
- component: BlankLayout,
- meta: {
- title: '公告管理',
- icon: 'sketch',
- permission: 'M_noticeManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'noticeManagementList',
- component: () => import(/* webpackChunkName: "setting" */ '@/views/setting/noticeManagement/list.vue'),
- meta: {
- title: '公告列表',
- icon: 'sketch',
- hidden: true,
- permission: 'M_noticeManagementList'
- }
- }
- ]
- },
- {
- path: '/setting/bigScreenSet',
- redirect: '/setting/bigScreenSet/index',
- name: 'bigScreenSet',
- component: BlankLayout,
- meta: {
- title: '大屏参数设置',
- icon: 'sketch',
- permission: 'M_bigScreenSetIndex'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'index',
- name: 'bigScreenSetIndex',
- component: () => import(/* webpackChunkName: "setting" */'@/views/setting/bigScreenSet/index.vue'),
- meta: {
- title: '大屏参数设置',
- icon: 'sketch',
- hidden: true,
- permission: 'M_bigScreenSetIndex'
- }
- }]
- },
- {
- path: '/setting/erpMessageManagement',
- redirect: '/setting/erpMessageManagement/list',
- name: 'erpMessageManagement',
- component: BlankLayout,
- meta: {
- title: 'ERP数据同步记录',
- icon: 'sketch',
- permission: 'M_erpMessageList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'M_erpMessageList',
- component: () => import(/* webpackChunkName: "setting" */ '@/views/setting/erpMessageManagement/list.vue'),
- meta: {
- title: 'ERP数据同步列表',
- icon: 'sketch',
- hidden: true,
- permission: 'M_erpMessageList'
- }
- }
- ]
- },
- {
- path: '/setting/checkDingTask',
- redirect: '/setting/checkDingTask/list',
- name: 'checkDingTask',
- component: BlankLayout,
- meta: {
- title: '钉钉审批',
- icon: 'sketch',
- permission: 'M_dingAuditUpdate'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'M_dingAuditUpdate',
- component: () => import(/* webpackChunkName: "setting" */ '@/views/setting/checkDingTask/list.vue'),
- meta: {
- title: '钉钉审批',
- icon: 'sketch',
- hidden: true,
- permission: 'M_dingAuditUpdate'
- }
- }
- ]
- }
- ]
- }
- ]
- },
- {
- path: '*',
- redirect: '/404',
- hidden: true
- }
- ]
- /**
- * 基础路由
- * @type { *[] }
- */
- export const constantRouterMap = [
- {
- path: '/user',
- component: UserLayout,
- redirect: '/user/login',
- hidden: true,
- children: [
- {
- path: 'login',
- name: 'login',
- component: () => import(/* webpackChunkName: "user" */ '@/views/user/Login')
- },
- {
- path: 'register',
- name: 'register',
- component: () => import(/* webpackChunkName: "user" */ '@/views/user/Register')
- },
- {
- path: 'register-result',
- name: 'registerResult',
- component: () => import(/* webpackChunkName: "user" */ '@/views/user/RegisterResult')
- },
- {
- path: 'recover',
- name: 'recover',
- component: undefined
- }
- ]
- },
- {
- path: '/bigScreen',
- component: BigScreen,
- redirect: '/bigScreen/realTimeSalesReport',
- hidden: true,
- children: [
- {
- path: 'realTimeSalesReport',
- name: 'realTimeSalesReport',
- component: () => import(/* webpackChunkName: "bigScreen" */ '@/views/bigScreen/realTimeSalesReport/index'),
- meta: {
- title: '实时销售看板'
- }
- },
- {
- path: 'fPanalysisReport',
- name: 'fPanalysisReport',
- component: () => import(/* webpackChunkName: "bigScreen" */ '@/views/bigScreen/fPanalysisReport/index'),
- meta: {
- title: '加盟商/产品分析'
- }
- }
- ]
- },
- {
- path: '/404',
- component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/404')
- }
- ]
|