123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367 |
- // eslint-disable-next-line
- import {
- UserLayout,
- BasicLayout,
- RouteView,
- BlankLayout,
- 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',
- component: () => import(/* webpackChunkName: "home" */ '@/views/Home'),
- meta: {
- title: '首页',
- icon: 'home',
- hide: true
- }
- }
- ]
- },
- {
- path: '/changePwd',
- name: 'changePwd',
- component: () => import(/* webpackChunkName: "home" */ '@/views/user/ChangePwd'),
- meta: {
- title: '修改密码',
- icon: 'home'
- },
- hidden: true
- },
- // 新品列表-下线产品
- {
- path: '/newProduct/list/:onlineFalg',
- name: 'newProductList',
- 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/salesQuery',
- component: PageView,
- meta: {
- title: '销售管理',
- icon: 'account-book',
- permission: 'M_salesManage'
- },
- children: [
- {
- path: '/salesManagement/salesQuery',
- redirect: '/salesManagement/salesQuery/list',
- name: 'salesQuery',
- component: BlankLayout,
- meta: {
- title: '销售单查询',
- icon: 'monitor',
- permission: 'M_salesQueryList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesQueryList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQuery/list.vue'),
- meta: {
- title: '销售单列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_salesQueryList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'salesDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQuery/detail.vue'),
- meta: {
- title: '销售单详情',
- icon: 'monitor',
- hidden: true,
- permission: 'B_salesDetail'
- }
- },
- {
- path: 'add/:id/:sn/:priceType',
- name: 'salesAdd',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQuery/edit.vue'),
- meta: {
- title: '新增销售单',
- icon: 'monitor',
- hidden: true,
- permission: 'B_salesNews'
- }
- },
- {
- path: 'edit/:id/:sn/:priceType',
- name: 'salesEdit',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQuery/edit.vue'),
- meta: {
- title: '编辑销售单',
- icon: 'monitor',
- hidden: true,
- permission: 'B_salesEdit'
- }
- }
- ]
- },
- {
- path: '/salesManagement/urgentItemsOffset',
- redirect: '/salesManagement/urgentItemsOffset/list',
- name: 'urgentItemsOffset',
- component: BlankLayout,
- meta: {
- title: '急件冲减',
- icon: 'rocket',
- permission: 'M_urgentItemsOffsetList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'urgentItemsOffsetList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/urgentItemsOffset/list.vue'),
- meta: {
- title: '急件冲减列表',
- icon: 'rocket',
- hidden: true,
- permission: 'M_urgentItemsOffsetList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'urgentItemsOffsetDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/urgentItemsOffset/detail.vue'),
- meta: {
- title: '急件冲减详情',
- icon: 'rocket',
- hidden: true,
- permission: 'M_urgentDetail'
- }
- }
- ]
- },
- {
- path: '/salesManagement/salesReturn',
- redirect: '/salesManagement/salesReturn/list',
- name: 'salesReturn',
- component: BlankLayout,
- meta: {
- title: '销售退货',
- icon: 'fund',
- permission: 'M_salesReturnList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesReturnList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesReturn/list.vue'),
- meta: {
- title: '退货单列表',
- icon: 'fund',
- hidden: true,
- permission: 'M_salesReturnList'
- }
- },
- {
- path: 'detail/:id/:sn',
- name: 'salesReturnDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesReturn/detail.vue'),
- meta: {
- title: '退货单详情',
- icon: 'fund',
- hidden: true,
- permission: 'B_salesReturnDetail'
- }
- },
- {
- path: 'salesReturnGrabEdit/:id/:sn/:buyerSn',
- name: 'salesReturnGrabEdit',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesReturn/salesReturnGrabEdit.vue'),
- meta: {
- title: '编辑退货单(抓单)',
- icon: 'fund',
- hidden: true,
- permission: 'B_salesReturnEdit'
- }
- },
- {
- path: 'salesReturnEdit/:id/:sn/:buyerSn',
- name: 'salesReturnEdit',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesReturn/salesReturnEdit.vue'),
- meta: {
- title: '编辑退货单(不抓单)',
- icon: 'fund',
- hidden: true,
- permission: 'B_salesReturnEdit'
- }
- }
- ]
- },
- {
- path: '/salesManagement/giftRecord',
- redirect: '/salesManagement/giftRecord/list',
- name: 'giftRecord',
- component: BlankLayout,
- meta: {
- title: '赠品记录',
- icon: 'file-search',
- permission: 'M_giftRecordList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'giftRecordList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/giftRecord/list.vue'),
- meta: {
- title: '赠品记录列表',
- icon: 'file-search',
- hidden: true,
- permission: 'M_giftRecordList'
- }
- }
- ]
- },
- {
- path: '/salesManagement/salesman',
- redirect: '/salesManagement/salesman/list',
- name: 'salesman',
- component: BlankLayout,
- meta: {
- title: '业务员管理',
- icon: 'file-search',
- permission: 'M_salesman_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesmanList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesman/list.vue'),
- meta: {
- title: '业务员列表',
- icon: 'file-search',
- hidden: true,
- permission: 'M_salesman_list'
- }
- }
- ]
- }
- ]
- },
- // 采购管理
- {
- path: '/purchasingManagement',
- redirect: '/purchasingManagement/purchaseOrder',
- component: PageView,
- meta: {
- title: '采购管理',
- icon: 'money-collect',
- permission: 'M_purchasingManagement'
- },
- children: [
- {
- path: '/purchasingManagement/purchaseOrder',
- redirect: '/purchasingManagement/purchaseOrder/list',
- name: 'purchaseOrder',
- component: BlankLayout,
- meta: {
- title: '采购单管理',
- icon: 'money-collect',
- permission: 'M_purchasingList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'purchaseOrderList',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseOrder/list.vue'),
- meta: {
- title: '采购单列表',
- icon: 'money-collect',
- hidden: true,
- permission: 'M_purchasingList'
- }
- },
- {
- path: 'add/:sn',
- name: 'purchaseOrderAdd',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseOrder/edit.vue'),
- meta: {
- title: '新增采购单',
- icon: 'money-collect',
- hidden: true,
- permission: 'B_purchaseNew'
- }
- },
- {
- path: 'edit/:sn',
- name: 'purchaseOrderEdit',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseOrder/edit.vue'),
- meta: {
- title: '编辑采购单',
- icon: 'money-collect',
- hidden: true,
- permission: 'B_purchaseEdit'
- }
- },
- {
- path: 'detail/:sn',
- name: 'purchaseOrderDetail',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseOrder/detail.vue'),
- meta: {
- title: '采购单详情',
- icon: 'money-collect',
- hidden: true,
- permission: 'B_purchaseDetail'
- }
- },
- {
- path: 'warehousing/:sn',
- name: 'purchaseOrderWarehousing',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseOrder/warehousing.vue'),
- meta: {
- title: '采购入库',
- icon: 'money-collect',
- hidden: true,
- permission: 'B_purchaseReceiving'
- }
- }
- ]
- },
- {
- path: '/purchasingManagement/purchaseReturn',
- redirect: '/purchasingManagement/purchaseReturn/list',
- name: 'purchaseReturn',
- component: BlankLayout,
- meta: {
- title: '采购退货',
- icon: 'money-collect',
- permission: 'M_purchaseReturnList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'purchaseReturnList',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseReturn/list.vue'),
- meta: {
- title: '采购退货列表',
- icon: 'money-collect',
- hidden: true,
- permission: 'M_purchaseReturnList'
- }
- },
- {
- path: 'add/:id/:sn/:name',
- name: 'purchaseReturnAdd',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseReturn/edit.vue'),
- meta: {
- title: '新增采购退货单',
- icon: 'money-collect',
- hidden: true,
- permission: 'B_purchaseReturnNew'
- }
- },
- {
- path: 'edit/:id/:sn/:name',
- name: 'purchaseReturnEdit',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseReturn/edit.vue'),
- meta: {
- title: '编辑采购退货单',
- icon: 'money-collect',
- hidden: true,
- permission: 'B_purchaseReturnEdit'
- }
- },
- {
- path: 'detail/:sn',
- name: 'purchaseReturnDetail',
- component: () => import(/* webpackChunkName: "purchasingManagement" */ '@/views/purchasingManagement/purchaseReturn/detail.vue'),
- meta: {
- title: '采购退货详情',
- icon: 'money-collect',
- hidden: true,
- permission: 'B_purchaseReturnDetail'
- }
- }
- ]
- }
- ]
- },
- // 出库管理
- {
- path: '/outboundOrderManagement',
- redirect: '/outboundOrderManagement/outboundOrder',
- component: PageView,
- meta: {
- title: '出库管理',
- icon: 'logout',
- permission: 'M_outboundList'
- },
- children: [
- {
- path: '/outboundOrderManagement/outboundOrder',
- redirect: '/outboundOrderManagement/outboundOrder/list',
- name: 'outboundOrder',
- component: BlankLayout,
- meta: {
- title: '出库',
- icon: 'logout',
- permission: 'M_outboundList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'outboundOrderList',
- component: () => import(/* webpackChunkName: "outboundOrderManagement" */ '@/views/outboundOrderManagement/outboundOrder/list.vue'),
- meta: {
- title: '出库列表',
- icon: 'logout',
- hidden: true,
- permission: 'M_outboundList'
- }
- }
- ]
- }
- ]
- },
- // 财务管理
- {
- path: '/financialManagement',
- redirect: '/financialManagement/warehousingAudit',
- component: PageView,
- meta: {
- title: '财务管理',
- icon: 'property-safety',
- permission: 'M_financial'
- },
- children: [
- {
- path: '/financialManagement/warehousingAudit',
- redirect: '/financialManagement/warehousingAudit/list',
- name: 'warehousingAudit',
- component: BlankLayout,
- meta: {
- title: '入库审核',
- icon: 'pull-request',
- permission: 'M_warehousingAuditList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehousingAuditList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/warehousingAudit/list.vue'),
- meta: {
- title: '入库审核列表',
- icon: 'pull-request',
- hidden: true,
- permission: 'M_warehousingAuditList'
- }
- },
- {
- path: 'detail/:sn',
- name: 'warehousingAuditDetail',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/warehousingAudit/detail.vue'),
- meta: {
- title: '入库审核详情',
- icon: 'pull-request',
- hidden: true,
- permission: 'M_warehousingAudit_detail'
- }
- }
- ]
- },
- {
- path: '/financialManagement/inventoryCheckAudit',
- redirect: '/financialManagement/inventoryCheckAudit/list',
- name: 'inventoryCheckAudit',
- component: BlankLayout,
- meta: {
- title: '盘点审核',
- icon: 'laptop',
- permission: 'M_inventoryCheckAuditList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryCheckAuditList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/inventoryCheckAudit/list.vue'),
- meta: {
- title: '盘点审核列表',
- icon: 'laptop',
- hidden: true,
- permission: 'M_inventoryCheckAuditList'
- }
- }
- ]
- },
- {
- path: '/financialManagement/financialPayment',
- redirect: '/financialManagement/financialPayment/list',
- name: 'financialPayment',
- component: BlankLayout,
- meta: {
- title: '财务付款',
- icon: 'pay-circle',
- permission: 'M_financialPaymentList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'financialPaymentList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/financialPayment/list.vue'),
- meta: {
- title: '财务付款列表',
- icon: 'pay-circle',
- hidden: true,
- permission: 'M_financialPaymentList'
- }
- }
- ]
- },
- {
- path: '/financialManagement/financialCollection',
- redirect: '/financialManagement/financialCollection/list',
- name: 'financialCollection',
- component: BlankLayout,
- meta: {
- title: '财务收款',
- icon: 'money-collect',
- permission: 'M_financialCollectionList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'financialCollectionList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/financialCollection/list.vue'),
- meta: {
- title: '财务收款列表',
- icon: 'money-collect',
- hidden: true,
- permission: 'M_financialCollectionList'
- }
- }
- ]
- },
- {
- path: '/financialManagement/expenseManagement',
- redirect: '/financialManagement/expenseManagement/list',
- name: 'expenseManagement',
- component: BlankLayout,
- meta: {
- title: '费用管理',
- icon: 'pound',
- permission: 'M_expenseManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'expenseManagementList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/expenseManagement/list.vue'),
- meta: {
- title: '费用单列表',
- icon: 'pound',
- hidden: true,
- permission: 'M_expenseManagementList'
- }
- },
- {
- path: 'add',
- name: 'expenseManagementAdd',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/expenseManagement/edit.vue'),
- meta: {
- title: '新增费用单',
- icon: 'pound',
- hidden: true,
- permission: 'B_expenseNew'
- }
- },
- {
- path: 'edit/:id',
- name: 'expenseManagementEdit',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/expenseManagement/edit.vue'),
- meta: {
- title: '编辑费用单',
- icon: 'pound',
- hidden: true,
- permission: 'B_expenseEdit'
- }
- }
- ]
- },
- {
- path: '/financialManagement/companyReceivablePayable',
- redirect: '/financialManagement/companyReceivablePayable/list',
- name: 'companyReceivablePayable',
- component: BlankLayout,
- meta: {
- title: '单位应收应付管理',
- icon: 'transaction',
- permission: 'M_companyReceivablePayableList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'companyReceivablePayableList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/companyReceivablePayable/list.vue'),
- meta: {
- title: '单位应收应付列表',
- icon: 'transaction',
- hidden: true,
- permission: 'M_companyReceivablePayableList'
- }
- },
- {
- path: 'collectionPayment/:sn/:name',
- name: 'companyReceivablePayableCollectionPayment',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/companyReceivablePayable/collectionPayment.vue'),
- meta: {
- title: '编辑单位应收应付',
- icon: 'transaction',
- hidden: true,
- permission: 'M_collectionPayment'
- }
- },
- {
- path: 'detail/:sn/:name',
- name: 'companyReceivablePayableDetail',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/companyReceivablePayable/detail.vue'),
- meta: {
- title: '单位应收应付详情',
- icon: 'transaction',
- hidden: true,
- permission: 'M_companyReceivablePayable_detail'
- }
- }
- ]
- },
- {
- path: '/financialManagement/companyCollectionPayment',
- redirect: '/financialManagement/companyCollectionPayment/list',
- name: 'companyCollectionPayment',
- component: BlankLayout,
- meta: {
- title: '单位收付款记录',
- icon: 'file-protect',
- permission: 'M_companyCollectionPaymentList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'companyCollectionPaymentList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/companyCollectionPayment/list.vue'),
- meta: {
- title: '单位收付款记录列表',
- icon: 'file-protect',
- hidden: true,
- permission: 'M_companyCollectionPaymentList'
- }
- },
- {
- path: 'detail/:id/:sn',
- name: 'companyCollectionPaymentDetail',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/companyCollectionPayment/detail.vue'),
- meta: {
- title: '单位收付款记录详情',
- icon: 'file-protect',
- hidden: true,
- permission: 'M_companyCollectionPayment_detail'
- }
- }
- ]
- },
- {
- path: '/financialManagement/withdrawalManagement',
- redirect: '/financialManagement/withdrawalManagement/list',
- name: 'withdrawalManagement',
- component: BlankLayout,
- meta: {
- title: '提现管理',
- icon: 'dollar',
- permission: 'M_withdrawalManagementList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'withdrawalManagementList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/withdrawalManagement/list.vue'),
- meta: {
- title: '提现管理列表',
- icon: 'dollar',
- hidden: true,
- permission: 'M_withdrawalManagementList'
- }
- }
- ]
- },
- {
- path: '/financialManagement/ledgerRecord',
- redirect: '/financialManagement/ledgerRecord/list',
- name: 'ledgerRecord',
- component: BlankLayout,
- meta: {
- title: '分账记录',
- icon: 'profile',
- permission: 'M_ledgerRecordList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'ledgerRecordList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/ledgerRecord/list.vue'),
- meta: {
- title: '分账记录列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_ledgerRecordList'
- }
- }
- ]
- }
- ]
- },
- // 调拨管理
- {
- path: '/allocationManagement',
- redirect: '/allocationManagement/warehouseAllocation',
- component: PageView,
- meta: {
- title: '调拨管理',
- icon: 'cluster',
- permission: 'M_allocationManagement'
- },
- children: [
- {
- path: '/allocationManagement/warehouseAllocation',
- redirect: '/allocationManagement/warehouseAllocation/list',
- name: 'warehouseAllocation',
- component: BlankLayout,
- meta: {
- title: '仓库调拨',
- icon: 'gateway',
- permission: 'M_warehouseAllocationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehouseAllocationList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/warehouseAllocation/list.vue'),
- meta: {
- title: '仓库调拨列表',
- icon: 'gateway',
- hidden: true,
- permission: 'M_warehouseAllocationList'
- }
- },
- {
- path: 'add',
- name: 'warehouseAllocationAdd',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/warehouseAllocation/edit.vue'),
- meta: {
- title: '新增仓库调拨',
- icon: 'gateway',
- hidden: true,
- permission: 'B_warehouseAllocationNews'
- }
- },
- {
- path: 'edit/:id/:sn',
- name: 'warehouseAllocationEdit',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/warehouseAllocation/edit.vue'),
- meta: {
- title: '编辑仓库调拨',
- icon: 'gateway',
- hidden: true,
- permission: 'B_warehouseAllocationEdit'
- }
- },
- {
- path: 'detail/:sn',
- name: 'warehouseAllocationDetail',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/warehouseAllocation/detail.vue'),
- meta: {
- title: '仓库调拨详情',
- icon: 'gateway',
- hidden: true,
- permission: 'B_warehouseAllocationDetail'
- }
- }
- ]
- },
- {
- path: '/allocationManagement/chainTransferIn',
- redirect: '/allocationManagement/chainTransferIn/list',
- name: 'chainTransferIn',
- component: BlankLayout,
- meta: {
- title: '连锁调入',
- icon: 'cluster',
- permission: 'M_chainTransferInList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainTransferInList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/chainTransferIn/list.vue'),
- meta: {
- title: '连锁调入列表',
- icon: 'cluster',
- hidden: true,
- permission: 'M_chainTransferInList'
- }
- },
- {
- path: 'edit/:id/:sn',
- name: 'chainTransferInEdit',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/chainTransferIn/edit.vue'),
- meta: {
- title: '编辑连锁调入',
- icon: 'cluster',
- hidden: true,
- permission: 'B_allocLinkagePutEdit'
- }
- },
- {
- path: 'detail/:sn',
- name: 'chainTransferInDetail',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/chainTransferIn/detail.vue'),
- meta: {
- title: '连锁调入详情',
- icon: 'cluster',
- hidden: true,
- permission: 'B_allocLinkagePutDetail'
- }
- }
- ]
- },
- {
- path: '/allocationManagement/chainTransferOut',
- redirect: '/allocationManagement/chainTransferOut/list',
- name: 'chainTransferOut',
- component: BlankLayout,
- meta: {
- title: '连锁调出',
- icon: 'pull-request',
- permission: 'M_chainTransferOutList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainTransferOutList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/chainTransferOut/list.vue'),
- meta: {
- title: '连锁调出列表',
- icon: 'pull-request',
- hidden: true,
- permission: 'M_chainTransferOutList'
- }
- },
- {
- path: 'add/:id/:sn',
- name: 'chainTransferOutAdd',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/chainTransferOut/edit.vue'),
- meta: {
- title: '新增连锁调出',
- icon: 'pull-request',
- hidden: true,
- permission: 'B_allocLinkageOutNew'
- }
- },
- {
- path: 'edit/:id/:sn',
- name: 'chainTransferOutEdit',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/chainTransferOut/edit.vue'),
- meta: {
- title: '编辑连锁调出',
- icon: 'pull-request',
- hidden: true,
- permission: 'B_allocLinkageOutEdit'
- }
- },
- {
- path: 'detail/:sn',
- name: 'chainTransferOutDetail',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/chainTransferOut/detail.vue'),
- meta: {
- title: '连锁调出详情',
- icon: 'pull-request',
- hidden: true,
- permission: 'B_allocLinkageOutDetail'
- }
- }
- ]
- },
- {
- path: '/allocationManagement/storeTransferOut',
- redirect: '/allocationManagement/storeTransferOut/list',
- name: 'storeTransferOut',
- component: BlankLayout,
- meta: {
- title: '店内调出',
- icon: 'interaction',
- permission: 'M_storeTransferOutList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'storeTransferOutList',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/storeTransferOut/list.vue'),
- meta: {
- title: '店内调出列表',
- icon: 'interaction',
- hidden: true,
- permission: 'M_storeTransferOutList'
- }
- },
- {
- path: 'add/:id/:sn',
- name: 'storeTransferOutAdd',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/storeTransferOut/edit.vue'),
- meta: {
- title: '新增店内调出',
- icon: 'interaction',
- hidden: true,
- permission: 'B_storeTransferOutNews'
- }
- },
- {
- path: 'edit/:id/:sn',
- name: 'storeTransferOutEdit',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/storeTransferOut/edit.vue'),
- meta: {
- title: '编辑店内调出',
- icon: 'interaction',
- hidden: true,
- permission: 'B_storeCallOutEdit'
- }
- },
- {
- path: 'detail/:sn',
- name: 'storeTransferOutDetail',
- component: () => import(/* webpackChunkName: "allocationManagement" */ '@/views/allocationManagement/storeTransferOut/detail.vue'),
- meta: {
- title: '店内调出详情',
- icon: 'interaction',
- hidden: true,
- permission: 'B_storeCallOutDetail'
- }
- }
- ]
- }
- ]
- },
- // 库存管理
- {
- path: '/inventoryManagement',
- redirect: '/inventoryManagement/inventoryQuery',
- component: PageView,
- meta: {
- title: '库存管理',
- icon: 'shop',
- permission: 'M_inventory'
- },
- children: [
- {
- path: '/inventoryManagement/inventoryQuery',
- redirect: '/inventoryManagement/inventoryQuery/list',
- name: 'inventoryQuery',
- component: BlankLayout,
- meta: {
- title: '库存查询',
- icon: 'monitor',
- permission: 'M_inventoryInventoryQueryList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryQueryList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryQuery/list.vue'),
- meta: {
- title: '库存列表',
- icon: 'monitor',
- hidden: true,
- permission: 'M_inventoryInventoryQueryList'
- }
- },
- {
- path: 'warehouseDetail/:sn',
- name: 'inventoryQueryWarehouseDetail',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryQuery/warehouseDetail.vue'),
- meta: {
- title: '出入库明细',
- icon: 'monitor',
- hidden: true,
- permission: 'B_inventoryInventoryQueryStock'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/inventoryWarning',
- name: 'inventoryWarningList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryWarning/list.vue'),
- meta: {
- title: '库存预警',
- icon: 'alert',
- permission: 'M_inventoryWarningList'
- }
- },
- {
- path: '/inventoryManagement/satelliteWarehouseInventory',
- name: 'satelliteWarehouseInventoryList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/satelliteWarehouseInventory/list.vue'),
- meta: {
- title: '卫星仓库存',
- icon: 'flag',
- permission: 'M_satelliteWarehouseInventoryList'
- }
- },
- {
- path: '/inventoryManagement/inventoryChecking',
- redirect: '/inventoryManagement/inventoryChecking/list',
- name: 'inventoryChecking',
- component: BlankLayout,
- meta: {
- title: '库存盘点',
- icon: 'reconciliation',
- permission: 'M_inventoryCheckingList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryCheckingList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryChecking/list.vue'),
- meta: {
- title: '库存盘点列表',
- icon: 'reconciliation',
- hidden: true,
- permission: 'M_inventoryCheckingList'
- }
- },
- {
- path: 'overall/:id/:sn',
- name: 'inventoryCheckingOverall',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryChecking/overall.vue'),
- meta: {
- title: '编辑库存盘点【全盘】',
- icon: 'reconciliation',
- hidden: true,
- permission: 'B_inventoryCheckingEdit'
- }
- },
- {
- path: 'selfDisk/:id/:sn',
- name: 'inventoryCheckingSelfDisk',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryChecking/selfDisk.vue'),
- meta: {
- title: '编辑库存盘点【自选盘点】',
- icon: 'reconciliation',
- hidden: true,
- permission: 'B_inventoryCheckingEdit'
- }
- },
- {
- path: 'makeInventory/:id/:sn',
- name: 'inventoryCheckingMakeInventory',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryChecking/makeInventory.vue'),
- meta: {
- title: '盘点',
- icon: 'reconciliation',
- hidden: true,
- permission: 'B_inventoryCheckingInventory'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/inventoryImport',
- redirect: '/inventoryManagement/inventoryImport/list',
- name: 'inventoryImport',
- component: BlankLayout,
- meta: {
- title: '库存导入',
- icon: 'frown',
- permission: 'M_inventoryImport'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryImportList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/inventoryImport/list.vue'),
- meta: {
- title: '库存导入列表',
- icon: 'frown',
- hidden: true,
- permission: 'M_inventoryImport'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/warehouse',
- redirect: '/inventoryManagement/warehouse/list',
- name: 'warehouse',
- component: BlankLayout,
- meta: {
- title: '仓库管理',
- icon: 'deployment-unit',
- permission: 'M_inventoryWarehouseList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehouseList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/warehouse/list.vue'),
- meta: {
- title: '仓库列表',
- icon: 'deployment-unit',
- hidden: true,
- permission: 'M_inventoryWarehouseList'
- }
- },
- {
- path: '/inventoryManagement/storingLocation/:sn',
- name: 'storingLocationList',
- component: () => import(/* webpackChunkName: "inventoryManagement" */ '@/views/inventoryManagement/warehouse/storingLocation/list.vue'),
- meta: {
- title: '仓位列表',
- icon: 'deployment-unit',
- hidden: true,
- permission: 'M_inventoryWarehouseStoringLocationList'
- }
- }
- ]
- }
- ]
- },
- // 散件管理
- {
- path: '/bulkManagement',
- redirect: '/bulkManagement/purchaseOrder',
- component: PageView,
- meta: {
- title: '散件管理',
- icon: 'gold',
- permission: 'M_bulkManagement'
- },
- children: [
- {
- path: '/bulkManagement/bulkWarehousingOrder',
- redirect: '/bulkManagement/bulkWarehousingOrder/list',
- name: 'bulkWarehousingOrder',
- component: BlankLayout,
- meta: {
- title: '散件入库',
- icon: 'gold',
- permission: 'M_bulkWarehousingOrderList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'bulkWarehousingOrderList',
- component: () => import(/* webpackChunkName: "bulkManagement" */ '@/views/bulkManagement/bulkWarehousingOrder/list.vue'),
- meta: {
- title: '散件入库单列表',
- icon: 'gold',
- hidden: true,
- permission: 'M_bulkWarehousingOrderList'
- }
- },
- {
- path: 'add/:id/:sn/:supplierSn',
- name: 'bulkWarehousingOrderAdd',
- component: () => import(/* webpackChunkName: "bulkManagement" */ '@/views/bulkManagement/bulkWarehousingOrder/edit.vue'),
- meta: {
- title: '新增散件入库单',
- icon: 'gold',
- hidden: true,
- permission: 'B_bulkWarehousingOrder_add'
- }
- },
- {
- path: 'edit/:id/:sn/:supplierSn',
- name: 'bulkWarehousingOrderEdit',
- component: () => import(/* webpackChunkName: "bulkManagement" */ '@/views/bulkManagement/bulkWarehousingOrder/edit.vue'),
- meta: {
- title: '编辑散件入库单',
- icon: 'gold',
- hidden: true,
- permission: 'B_bulkWarehousingOrder_edit'
- }
- },
- {
- path: 'detail/:id/:sn',
- name: 'bulkWarehousingOrderDetail',
- component: () => import(/* webpackChunkName: "bulkManagement" */ '@/views/bulkManagement/bulkWarehousingOrder/detail.vue'),
- meta: {
- title: '散件入库单详情',
- icon: 'gold',
- hidden: true,
- permission: 'B_bulkWarehousingOrder_detail'
- }
- }
- ]
- },
- {
- path: '/bulkManagement/bulkReturnGoods',
- redirect: '/bulkManagement/bulkReturnGoods/list',
- name: 'bulkReturnGoods',
- component: BlankLayout,
- meta: {
- title: '散件退货',
- icon: 'frown',
- permission: 'M_bulkReturnGoodsList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'bulkReturnGoodsList',
- component: () => import(/* webpackChunkName: "bulkManagement" */ '@/views/bulkManagement/bulkReturnGoods/list.vue'),
- meta: {
- title: '散件退货列表',
- icon: 'frown',
- hidden: true,
- permission: 'M_bulkReturnGoodsList'
- }
- },
- {
- path: 'edit/:id/:sn',
- name: 'bulkReturnGoodsEdit',
- component: () => import(/* webpackChunkName: "bulkManagement" */ '@/views/bulkManagement/bulkReturnGoods/edit.vue'),
- meta: {
- title: '编辑散件退货单(不抓单)',
- icon: 'frown',
- hidden: true,
- permission: 'B_bulkReturnGoodsEdit'
- }
- },
- {
- path: 'grabEdit/:id/:sn/:supplierSn',
- name: 'bulkReturnGoodsGrabEdit',
- component: () => import(/* webpackChunkName: "bulkManagement" */ '@/views/bulkManagement/bulkReturnGoods/grabEdit.vue'),
- meta: {
- title: '编辑散件退货单(抓单)',
- icon: 'frown',
- hidden: true,
- permission: 'B_bulkReturnGoodsEdit'
- }
- }
- ]
- },
- {
- path: '/bulkManagement/bulkImport',
- redirect: '/bulkManagement/bulkImport/list',
- name: 'bulkImport',
- component: BlankLayout,
- meta: {
- title: '散件导入',
- icon: 'frown',
- permission: 'M_bulkImport'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'bulkImportList',
- component: () => import(/* webpackChunkName: "bulkManagement" */ '@/views/bulkManagement/bulkImport/list.vue'),
- meta: {
- title: '散件导入列表',
- icon: 'frown',
- hidden: true,
- permission: 'M_bulkImport'
- }
- }
- ]
- }
- ]
- },
- // 报表
- {
- path: '/reportData',
- redirect: '/reportData/chainStockReport',
- component: PageView,
- meta: {
- title: '报表',
- icon: 'project',
- permission: 'M_reportData'
- },
- children: [
- {
- path: '/reportData/chainStockReport',
- redirect: '/reportData/chainStockReport/list',
- name: 'chainStockReport',
- component: BlankLayout,
- meta: {
- title: '连锁库存总表',
- icon: 'profile',
- permission: 'M_chainStockReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainStockReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/chainStockReport/list.vue'),
- meta: {
- title: '连锁库存总表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_chainStockReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesReport',
- redirect: '/reportData/salesReport/list',
- name: 'salesReport',
- component: BlankLayout,
- meta: {
- title: '销售报表',
- icon: 'profile',
- permission: 'M_salesReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesReport/list.vue'),
- meta: {
- title: '销售报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesDetailReport',
- redirect: '/reportData/salesDetailReport/list',
- name: 'salesDetailReport',
- component: BlankLayout,
- meta: {
- title: '销售明细报表',
- icon: 'profile',
- permission: 'M_salesDetailReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesDetailReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesDetailReport/list.vue'),
- meta: {
- title: '销售明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesDetailReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/chainSalesReport',
- redirect: '/reportData/chainSalesReport/list',
- name: 'chainSalesReport',
- component: BlankLayout,
- meta: {
- title: '连锁销售报表',
- icon: 'profile',
- permission: 'M_chainSalesReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainSalesReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/chainSalesReport/list.vue'),
- meta: {
- title: '连锁销售报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_chainSalesReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/chainSalesDetailReport',
- redirect: '/reportData/chainSalesDetailReport/list',
- name: 'chainSalesDetailReport',
- component: BlankLayout,
- meta: {
- title: '连锁销售明细报表',
- icon: 'profile',
- permission: 'M_chainSalesDetailReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainSalesDetailReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/chainSalesDetailReport/list.vue'),
- meta: {
- title: '连锁销售明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_chainSalesDetailReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/chainReceivedSendStorageReport',
- redirect: '/reportData/chainReceivedSendStorageReport/list',
- name: 'chainReceivedSendStorageReport',
- component: BlankLayout,
- meta: {
- title: '连锁收发存报表',
- icon: 'profile',
- permission: 'M_chainReceivedSendStorageReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainReceivedSendStorageReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/chainReceivedSendStorageReport/list.vue'),
- meta: {
- title: '连锁收发存报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_chainReceivedSendStorageReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/customerReport',
- redirect: '/reportData/customerReport/list',
- name: 'customerReport',
- component: BlankLayout,
- meta: {
- title: '大客户报表',
- icon: 'profile',
- permission: 'M_customerReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'customerReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/customerReport/list.vue'),
- meta: {
- title: '大客户报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_customerReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/chainCustomerReport',
- redirect: '/reportData/chainCustomerReport/list',
- name: 'chainCustomerReport',
- component: BlankLayout,
- meta: {
- title: '连锁大客户报表',
- icon: 'profile',
- permission: 'M_chainCustomerReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainCustomerReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/chainCustomerReport/list.vue'),
- meta: {
- title: '连锁大客户报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_chainCustomerReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/stockIncomeReport',
- redirect: '/reportData/stockIncomeReport/list',
- name: 'stockIncomeReport',
- component: BlankLayout,
- meta: {
- title: '库存总入报表',
- icon: 'profile',
- permission: 'M_stockIncomeReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'stockIncomeReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/stockIncomeReport/list.vue'),
- meta: {
- title: '库存总入报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_stockIncomeReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/stockExpenditureReport',
- redirect: '/reportData/stockExpenditureReport/list',
- name: 'stockExpenditureReport',
- component: BlankLayout,
- meta: {
- title: '库存总出报表',
- icon: 'profile',
- permission: 'M_stockExpenditureReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'stockExpenditureReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/stockExpenditureReport/list.vue'),
- meta: {
- title: '库存总出报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_stockExpenditureReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/chainStockIncomeReport',
- redirect: '/reportData/chainStockIncomeReport/list',
- name: 'chainStockIncomeReport',
- component: BlankLayout,
- meta: {
- title: '连锁库存总入报表',
- icon: 'profile',
- permission: 'M_chainStockIncomeReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainStockIncomeReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/chainStockIncomeReport/list.vue'),
- meta: {
- title: '连锁库存总入报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_chainStockIncomeReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/chainStockExpenditureReport',
- redirect: '/reportData/chainStockExpenditureReport/list',
- name: 'chainStockExpenditureReport',
- component: BlankLayout,
- meta: {
- title: '连锁库存总出报表',
- icon: 'profile',
- permission: 'M_chainStockExpenditureReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainStockExpenditureReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/chainStockExpenditureReport/list.vue'),
- meta: {
- title: '连锁库存总出报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_chainStockExpenditureReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/purchaseReceiptReport',
- redirect: '/reportData/purchaseReceiptReport/list',
- name: 'purchaseReceiptReport',
- component: BlankLayout,
- meta: {
- title: '采购入库报表',
- icon: 'profile',
- permission: 'M_purchaseReceiptReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'purchaseReceiptReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/purchaseReceiptReport/list.vue'),
- meta: {
- title: '采购入库报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_purchaseReceiptReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/chainPurchaseReceiptReport',
- redirect: '/reportData/chainPurchaseReceiptReport/list',
- name: 'chainPurchaseReceiptReport',
- component: BlankLayout,
- meta: {
- title: '连锁采购入库报表',
- icon: 'profile',
- permission: 'M_chainPurchaseReceiptReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainPurchaseReceiptReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/chainPurchaseReceiptReport/list.vue'),
- meta: {
- title: '连锁采购入库报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_chainPurchaseReceiptReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/receivedSendStorageReport',
- redirect: '/reportData/receivedSendStorageReport/list',
- name: 'receivedSendStorageReport',
- component: BlankLayout,
- meta: {
- title: '收发存报表',
- icon: 'profile',
- permission: 'M_receivedSendStorageReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'receivedSendStorageReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/receivedSendStorageReport/list.vue'),
- meta: {
- title: '收发存报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_receivedSendStorageReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/inventoryReport',
- redirect: '/reportData/inventoryReport/list',
- name: 'inventoryReport',
- component: BlankLayout,
- meta: {
- title: '盘点报表',
- icon: 'profile',
- permission: 'M_inventoryReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/inventoryReport/list.vue'),
- meta: {
- title: '盘点报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_inventoryReportList'
- }
- }
- ]
- }
- ]
- },
- // 客户管理
- {
- path: '/customerManagement',
- redirect: '/customerManagement/customerInfo',
- component: PageView,
- meta: {
- title: '客户管理',
- icon: 'idcard',
- permission: 'M_customerInfoList'
- },
- children: [
- {
- path: '/customerManagement/customerInfo',
- redirect: '/customerManagement/customerInfo/list',
- name: 'customerInfo',
- component: BlankLayout,
- meta: {
- title: '客户管理',
- icon: 'idcard',
- permission: 'M_customerInfoList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'customerInfoList',
- component: () => import(/* webpackChunkName: "customerManagement" */ '@/views/customerManagement/customerInfo/list.vue'),
- meta: {
- title: '客户列表',
- icon: 'idcard',
- hidden: true,
- permission: 'M_customerInfoList'
- }
- },
- {
- path: 'add',
- name: 'customerInfoAdd',
- component: () => import(/* webpackChunkName: "customerManagement" */ '@/views/customerManagement/customerInfo/edit.vue'),
- meta: {
- title: '新增客户',
- icon: 'idcard',
- hidden: true,
- permission: 'B_customer_customerInfo_add'
- }
- },
- {
- path: 'edit/:id',
- name: 'customerInfoEdit',
- component: () => import(/* webpackChunkName: "customerManagement" */ '@/views/customerManagement/customerInfo/edit.vue'),
- meta: {
- title: '编辑客户',
- icon: 'idcard',
- hidden: true,
- permission: 'B_customer_customerInfo_edit'
- }
- }
- ]
- }
- ]
- },
- // 产品管理
- {
- path: '/productManagement',
- redirect: '/productManagement/productInfo',
- component: PageView,
- meta: {
- title: '产品管理',
- icon: 'shopping',
- permission: 'M_product'
- },
- children: [
- {
- path: '/productManagement/productInfo',
- redirect: '/productManagement/productInfo/list',
- name: 'productInfo',
- component: BlankLayout,
- meta: {
- title: '产品信息管理(自建)',
- icon: 'file-text',
- permission: 'M_dealerProductList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productInfoList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productInfo/list.vue'),
- meta: {
- title: '产品信息列表(自建)',
- icon: 'file-text',
- hidden: true,
- permission: 'M_dealerProductList'
- }
- },
- {
- path: 'add',
- name: 'productInfoAdd',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productInfo/edit.vue'),
- meta: {
- title: '新增产品',
- icon: 'file-text',
- hidden: true,
- permission: 'B_product_dealerProduct_add'
- }
- },
- {
- path: 'edit/:id',
- name: 'productInfoEdit',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productInfo/edit.vue'),
- meta: {
- title: '编辑产品',
- icon: 'file-text',
- hidden: true,
- permission: 'B_product_dealerProduct_edit'
- }
- }
- ]
- },
- {
- path: '/productManagement/productInfoJg',
- redirect: '/productManagement/productInfoJg/list',
- name: 'productInfoJg',
- component: BlankLayout,
- meta: {
- title: '产品信息管理(箭冠)',
- icon: 'file-text',
- permission: 'M_productInfoList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productInfoJgList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productInfoJg/list.vue'),
- meta: {
- title: '产品信息列表(箭冠)',
- icon: 'file-text',
- hidden: true,
- permission: 'M_productInfoList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productOnlineInfo',
- redirect: '/productManagement/productOnlineInfo/list',
- name: 'productOnlineInfo',
- component: BlankLayout,
- meta: {
- title: '产品上线信息',
- icon: 'file-text',
- permission: 'M_productOnlineInfoList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productOnlineInfoList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productOnlineInfo/list.vue'),
- meta: {
- title: '产品上线信息列表',
- icon: 'file-text',
- hidden: true,
- permission: 'M_productOnlineInfoList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productBrand',
- redirect: '/productManagement/productBrand/list',
- name: 'productBrand',
- component: BlankLayout,
- meta: {
- title: '产品品牌管理',
- icon: 'sketch',
- permission: 'M_dealerProductBrandList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productBrandList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productBrand/list.vue'),
- meta: {
- title: '产品品牌列表',
- icon: 'sketch',
- hidden: true,
- permission: 'M_dealerProductBrandList'
- }
- }
- ]
- },
- {
- path: '/productManagement/productCategory',
- redirect: '/productManagement/productCategory/list',
- name: 'productCategory',
- component: BlankLayout,
- meta: {
- title: '产品分类管理',
- icon: 'sliders',
- permission: 'M_dealerProductTypeList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productCategoryList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/productCategory/list.vue'),
- meta: {
- title: '产品分类列表',
- icon: 'sliders',
- hidden: true,
- permission: 'M_dealerProductTypeList'
- }
- }
- ]
- },
- {
- path: '/productManagement/priceChangeRecord',
- redirect: '/productManagement/priceChangeRecord/list',
- name: 'priceChangeRecord',
- component: BlankLayout,
- meta: {
- title: '价格变更记录',
- icon: 'sketch',
- permission: 'M_priceChangeRecordList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'priceChangeRecordList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/productManagement/priceChangeRecord/list.vue'),
- meta: {
- title: '价格变更记录列表',
- icon: 'sketch',
- hidden: true,
- permission: 'M_priceChangeRecordList'
- }
- }
- ]
- }
- ]
- },
- // 供应商管理
- {
- path: '/supplierManagement',
- redirect: '/supplierManagement/supplierInfo',
- component: PageView,
- meta: {
- title: '供应商管理',
- icon: 'team',
- permission: 'M_supplierInfoList'
- },
- 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: "productManagement" */ '@/views/supplierManagement/supplierInfo/list.vue'),
- meta: {
- title: '供应商列表',
- icon: 'team',
- hidden: true,
- permission: 'M_supplierInfoList'
- }
- }
- ]
- }
- ]
- },
- // 中心店/配送店管理
- {
- path: '/storeManagement',
- redirect: '/storeManagement/bind',
- component: PageView,
- meta: {
- title: '中心店/配送店管理',
- icon: 'bank',
- permission: 'M_storeManagement'
- },
- children: [
- {
- path: '/storeManagement/bind',
- redirect: '/storeManagement/bind/list',
- name: 'storeManagementBind',
- component: BlankLayout,
- meta: {
- title: '中心店/配送店绑定',
- icon: 'link',
- permission: 'M_storeManagementBindList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'storeManagementBindList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/storeManagement/bind/list.vue'),
- meta: {
- title: '中心店/配送店绑定列表',
- icon: 'link',
- hidden: true,
- permission: 'M_storeManagementBindList'
- }
- }
- ]
- },
- {
- path: '/storeManagement/userAuthorization',
- redirect: '/storeManagement/userAuthorization/list',
- name: 'storeManagementUserAuth',
- component: BlankLayout,
- meta: {
- title: '中心店用户授权',
- icon: 'link',
- permission: 'M_storeManagementUserAuthList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'storeManagementUserAuthList',
- component: () => import(/* webpackChunkName: "productManagement" */ '@/views/storeManagement/userAuthorization/list.vue'),
- meta: {
- title: '中心店用户授权列表',
- icon: 'link',
- hidden: true,
- permission: 'M_storeManagementUserAuthList'
- }
- }
- ]
- }
- ]
- },
- // 基础设置
- {
- path: '/basicData',
- redirect: '/basicData/storeTransferOutTypeManagement',
- component: PageView,
- meta: {
- title: '基础设置',
- icon: 'pushpin',
- permission: 'M_basicData'
- },
- children: [
- {
- path: '/basicData/storeTransferOutTypeManagement',
- redirect: '/basicData/storeTransferOutTypeManagement/list',
- name: 'storeTransferOutTypeManagement',
- component: BlankLayout,
- meta: {
- title: '店内调出类型管理',
- icon: 'interaction',
- permission: 'M_storeTransferOutTypeList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'storeTransferOutTypeManagementList',
- component: () => import(/* webpackChunkName: "basicData" */ '@/views/basicData/storeTransferOutTypeManagement/list.vue'),
- meta: {
- title: '店内调出类型管理列表',
- icon: 'interaction',
- hidden: true,
- permission: 'M_storeTransferOutTypeList'
- }
- }
- ]
- },
- {
- path: '/basicData/bulkPartsTypeManagement',
- redirect: '/basicData/bulkPartsTypeManagement/list',
- name: 'bulkPartsTypeManagement',
- component: BlankLayout,
- meta: {
- title: '散件入库类型管理',
- icon: 'gold',
- permission: 'M_bulkPartsTypeList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'bulkPartsTypeManagementList',
- component: () => import(/* webpackChunkName: "basicData" */ '@/views/basicData/bulkPartsTypeManagement/list.vue'),
- meta: {
- title: '散件入库类型列表',
- icon: 'gold',
- hidden: true,
- permission: 'M_bulkPartsTypeList'
- }
- }
- ]
- },
- {
- path: '/basicData/expenseType',
- redirect: '/basicData/expenseType/list',
- name: 'expenseType',
- component: BlankLayout,
- meta: {
- title: '费用类型管理',
- icon: 'pay-circle',
- permission: 'M_expenseTypeList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'expenseTypeList',
- component: () => import(/* webpackChunkName: "basicData" */ '@/views/basicData/expenseType/list.vue'),
- meta: {
- title: '费用类型列表',
- icon: 'pay-circle',
- hidden: true,
- permission: 'M_expenseTypeList'
- }
- }
- ]
- },
- // {
- // path: '/basicData/processSettings',
- // redirect: '/basicData/processSettings/setup',
- // name: 'processSettings',
- // component: BlankLayout,
- // meta: {
- // title: '业务自动化设置',
- // icon: 'sliders'
- // // permission: 'M_goodsManage_list'
- // },
- // hideChildrenInMenu: true,
- // children: [
- // {
- // path: 'setup',
- // name: 'processSettingsSetup',
- // component: () => import(/* webpackChunkName: "basicData" */ '@/views/basicData/processSettings/setup.vue'),
- // meta: {
- // title: '业务自动化设置',
- // icon: 'sliders',
- // hidden: true
- // // permission: 'M_goodsManage_list'
- // }
- // }
- // ]
- // },
- {
- path: '/basicData/customerTypeManagement',
- redirect: '/basicData/customerTypeManagement/list',
- name: 'customerTypeManagement',
- component: BlankLayout,
- meta: {
- title: '客户类型管理',
- icon: 'idcard',
- permission: 'M_customerTypeList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'customerTypeManagementList',
- component: () => import(/* webpackChunkName: "basicData" */ '@/views/basicData/customerTypeManagement/list.vue'),
- meta: {
- title: '客户类型列表',
- icon: 'idcard',
- hidden: true,
- permission: 'M_customerTypeList'
- }
- }
- ]
- }
- ]
- },
- // auth
- {
- path: '/auth',
- redirect: '/auth/userList',
- component: PageView,
- meta: {
- title: '权限管理',
- icon: 'lock',
- permission: 'M_powerMD_0'
- },
- children: [
- {
- path: '/auth/userList',
- name: 'powerUserList',
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/user/userList.vue'),
- meta: {
- title: '用户管理',
- icon: 'user',
- permission: 'M_powerMD_user_list'
- }
- },
- {
- path: '/auth/roleList',
- name: 'powerRoleList',
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/role/roleList.vue'),
- meta: {
- title: '角色管理',
- icon: 'solution',
- permission: 'M_powerMD_role_list'
- }
- }
- ]
- },
- // 系统设置
- // {
- // path: '/setting',
- // redirect: '/setting/userList',
- // component: PageView,
- // meta: {
- // title: '系统设置',
- // icon: 'setting'
- // // permission: 'M_setting_0'
- // },
- // children: [
- // {
- // path: '/setting/dataDictionary',
- // name: 'powerDD',
- // component: () => import(/* webpackChunkName: "setting" */
- // '@/views/power/dataDictionary/dataDictionary.vue'),
- // meta: {
- // title: '数据字典管理',
- // icon: 'database'
- // // permission: 'M_sys_dataDictionary'
- // }
- // },
- // // {
- // // path: '/setting/register',
- // // name: 'powerRegister',
- // // component: () => import(/* webpackChunkName: "setting" */ '@/views/power/register/register.vue'),
- // // meta: {
- // // title: '参数管理',
- // // icon: 'key',
- // // permission: 'M_sys_register'
- // // }
- // // },
- // {
- // path: '/setting/OperateJournal',
- // name: 'powerOperateJournal',
- // component: () => import(/* webpackChunkName: "setting" */
- // '@/views/power/OperateJournal/OperateJournal.vue'),
- // meta: {
- // title: '操作日志',
- // icon: 'read'
- // // permission: 'M_operateJournal'
- // }
- // }
- // ]
- // }
- // 公告
- {
- path: '/notice',
- name: 'notice',
- component: () => import(/* webpackChunkName: "home" */ '@/views/notice/list'),
- meta: {
- title: '公告',
- icon: 'bell'
- },
- hidden: true
- }
- ]
- },
- {
- 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: '/404',
- component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/404')
- }
- ]
|