123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248 |
- // 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: '/salesManagement',
- redirect: '/salesManagement/salesQuery',
- component: PageView,
- meta: {
- title: '销售管理',
- icon: 'account-book'
- // permission: 'M_salesManagement'
- },
- children: [
- {
- path: '/salesManagement/salesQuery',
- redirect: '/salesManagement/salesQuery/list',
- name: 'salesQuery',
- component: RouteView,
- meta: {
- title: '销售单查询',
- icon: 'monitor'
- // permission: 'M_salesQuery_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesQueryList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQuery/list.vue'),
- meta: {
- title: '销售单列表',
- icon: 'monitor',
- hidden: true
- // permission: 'M_salesQuery_list'
- }
- },
- {
- path: 'detail/:id/:sn',
- name: 'salesDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQuery/detail.vue'),
- meta: {
- title: '销售单详情',
- icon: 'monitor',
- hidden: true
- // permission: 'M_salesDetail'
- }
- },
- {
- path: 'add',
- name: 'salesAdd',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQuery/edit.vue'),
- meta: {
- title: '新增销售单',
- icon: 'monitor',
- hidden: true
- // permission: 'M_salesNew'
- }
- },
- {
- path: 'edit/:id',
- name: 'salesEdit',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/salesQuery/edit.vue'),
- meta: {
- title: '编辑销售单',
- icon: 'monitor',
- hidden: true
- // permission: 'M_salesNew'
- }
- }
- ]
- },
- {
- path: '/salesManagement/backorder',
- redirect: '/salesManagement/backorder/list',
- name: 'backorder',
- component: RouteView,
- meta: {
- title: '缺货单',
- icon: 'exception'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'backorderList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/backorder/list.vue'),
- meta: {
- title: '缺货单列表',
- icon: 'exception',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'detail/:id',
- name: 'backorderDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/backorder/detail.vue'),
- meta: {
- title: '缺货单详情',
- icon: 'exception',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- },
- {
- path: '/salesManagement/examineVerify',
- redirect: '/salesManagement/examineVerify/list',
- name: 'examineVerify',
- component: RouteView,
- meta: {
- title: '备货审核',
- icon: 'audit'
- // permission: 'M_outboundOrder'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'examineVerifyList',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/examineVerify/list.vue'),
- meta: {
- title: '备货审核列表',
- icon: 'audit',
- hidden: true
- // permission: 'M_outboundOrder_list'
- }
- },
- {
- path: 'detail/:id',
- name: 'examineVerifyDetail',
- component: () => import(/* webpackChunkName: "salesManagement" */ '@/views/salesManagement/examineVerify/detail.vue'),
- meta: {
- title: '备货审核详情',
- icon: 'audit',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- }
- ]
- },
- // 产品管理
- {
- path: '/productManagement',
- redirect: '/productManagement/productInfo',
- component: PageView,
- meta: {
- title: '产品管理',
- icon: 'shopping'
- // permission: 'M_shop'
- },
- children: [
- {
- path: '/productManagement/productInfo',
- redirect: '/productManagement/productInfo/list',
- name: 'productInfo',
- component: RouteView,
- meta: {
- title: '产品信息管理',
- icon: 'file-text'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productInfoList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productInfo/list.vue'),
- meta: {
- title: '产品信息列表',
- icon: 'file-text',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'add',
- name: 'productInfoAdd',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productInfo/edit.vue'),
- meta: {
- title: '新增产品',
- icon: 'file-text',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'edit/:id',
- name: 'productInfoEdit',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productInfo/edit.vue'),
- meta: {
- title: '编辑产品',
- icon: 'file-text',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- },
- {
- path: '/productManagement/productPricing',
- redirect: '/productManagement/productPricing/list',
- name: 'productPricing',
- component: RouteView,
- meta: {
- title: '产品定价',
- icon: 'sketch'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productPricingList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productPricing/list.vue'),
- meta: {
- title: '产品定价列表',
- icon: 'sketch',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- },
- {
- path: '/productManagement/priceChangeRecord',
- redirect: '/productManagement/priceChangeRecord/list',
- name: 'priceChangeRecord',
- component: RouteView,
- meta: {
- title: '价格变更记录',
- icon: 'sketch'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'priceChangeRecordList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/priceChangeRecord/list.vue'),
- meta: {
- title: '价格变更记录列表',
- icon: 'sketch',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- },
- {
- path: '/productManagement/productLaunchAudit',
- redirect: '/productManagement/productLaunchAudit/list',
- name: 'productLaunchAudit',
- component: RouteView,
- meta: {
- title: '产品上线审核',
- icon: 'sketch'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productLaunchAuditList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productLaunchAudit/list.vue'),
- meta: {
- title: '产品上线审核列表',
- icon: 'sketch',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- },
- {
- path: '/productManagement/productOfflineAudit',
- redirect: '/productManagement/productOfflineAudit/list',
- name: 'productOfflineAudit',
- component: RouteView,
- meta: {
- title: '产品下线审核',
- icon: 'sketch'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productOfflineAuditList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productOfflineAudit/list.vue'),
- meta: {
- title: '产品下线审核列表',
- icon: 'sketch',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- },
- {
- path: '/productManagement/productLevel',
- redirect: '/productManagement/productLevel/list',
- name: 'productLevel',
- component: RouteView,
- meta: {
- title: '产品级别',
- icon: 'sketch'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productLevelList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productLevel/list.vue'),
- meta: {
- title: '产品级别列表',
- icon: 'sketch',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- },
- {
- path: '/productManagement/productBrand',
- redirect: '/productManagement/productBrand/list',
- name: 'productBrand',
- component: RouteView,
- meta: {
- title: '产品品牌管理',
- icon: 'sketch'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productBrandList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productBrand/list.vue'),
- meta: {
- title: '产品品牌列表',
- icon: 'sketch',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- },
- {
- path: '/productManagement/productCategory',
- redirect: '/productManagement/productCategory/list',
- name: 'productCategory',
- component: RouteView,
- meta: {
- title: '产品分类管理',
- icon: 'sliders'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'productCategoryList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/productCategory/list.vue'),
- meta: {
- title: '产品分类列表',
- icon: 'sliders',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- }
- // 二期
- // {
- // path: '/productManagement/purchaseBaseLimit',
- // redirect: '/productManagement/purchaseBaseLimit/list',
- // name: 'purchaseBaseLimit',
- // component: RouteView,
- // meta: {
- // title: '产品采购基数限制',
- // icon: 'sliders'
- // // permission: 'M_goodsManage_list'
- // },
- // hideChildrenInMenu: true,
- // children: [
- // {
- // path: 'list',
- // name: 'purchaseBaseLimitList',
- // component: () => import(/* webpackChunkName: "shop" */ '@/views/productManagement/purchaseBaseLimit/list.vue'),
- // meta: {
- // title: '采购基数限制列表',
- // icon: 'sliders',
- // hidden: true
- // // permission: 'M_goodsManage_list'
- // }
- // }
- // ]
- // }
- ]
- },
- // 经销商管理
- {
- path: '/dealerManagement',
- redirect: '/dealerManagement/marketingDivisionSet',
- component: PageView,
- meta: {
- title: '经销商管理',
- icon: 'shopping'
- // permission: 'M_shop'
- },
- children: [
- {
- path: '/dealerManagement/marketingDivisionSet',
- redirect: '/dealerManagement/marketingDivisionSet/list',
- name: 'marketingDivisionSet',
- component: RouteView,
- meta: {
- title: '营销分区设置',
- icon: 'sketch'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'marketingDivisionSetList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/dealerManagement/marketingDivisionSet/list.vue'),
- meta: {
- title: '营销分区列表',
- icon: 'sketch',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- }
- ]
- },
- {
- path: '/dealerManagement/merchantInfoManagement',
- redirect: '/dealerManagement/merchantInfoManagement/list',
- name: 'merchantInfoManagement',
- component: RouteView,
- meta: {
- title: '商户资料管理',
- icon: 'file-text'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'merchantInfoManagementList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/dealerManagement/merchantInfoManagement/list.vue'),
- meta: {
- title: '商户资料列表',
- icon: 'file-text',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'add',
- name: 'merchantInfoManagementAdd',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/dealerManagement/merchantInfoManagement/edit.vue'),
- meta: {
- title: '新增商户',
- icon: 'file-text',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'edit/:id',
- name: 'merchantInfoManagementEdit',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/dealerManagement/merchantInfoManagement/edit.vue'),
- meta: {
- title: '编辑商户',
- icon: 'file-text',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- }
- ]
- },
- // 供应商管理
- {
- path: '/supplierManagement',
- redirect: '/supplierManagement/supplierInfo',
- component: PageView,
- meta: {
- title: '供应商管理',
- icon: 'team'
- // permission: 'M_shop'
- },
- children: [
- {
- path: '/supplierManagement/supplierInfo',
- redirect: '/supplierManagement/supplierInfo/list',
- name: 'supplierInfo',
- component: RouteView,
- meta: {
- title: '供应商管理',
- icon: 'team'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'supplierInfoList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/supplierManagement/supplierInfo/list.vue'),
- meta: {
- title: '供应商列表',
- icon: 'team',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'add',
- name: 'supplierInfoAdd',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/supplierManagement/supplierInfo/edit.vue'),
- meta: {
- title: '新增供应商',
- icon: 'team',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'edit/:id',
- name: 'supplierInfoEdit',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/supplierManagement/supplierInfo/edit.vue'),
- meta: {
- title: '编辑供应商',
- icon: 'team',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- }
- ]
- },
- // 库存管理
- {
- path: '/inventoryManagement',
- redirect: '/inventoryManagement/inventoryQuery',
- component: PageView,
- meta: {
- title: '库存管理',
- icon: 'shop'
- // permission: 'M_shop'
- },
- children: [
- {
- path: '/inventoryManagement/inventoryQuery',
- redirect: '/inventoryManagement/inventoryQuery/list',
- name: 'inventoryQuery',
- component: RouteView,
- meta: {
- title: '库存查询',
- icon: 'monitor'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryQueryList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryQuery/list.vue'),
- meta: {
- title: '库存列表',
- icon: 'monitor',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'warehouseDetail/:id',
- name: 'inventoryQueryWarehouseDetail',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryQuery/warehouseDetail.vue'),
- meta: {
- title: '出入库明细',
- icon: 'monitor',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/inventoryWarning',
- name: 'inventoryWarningList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryWarning/list.vue'),
- meta: {
- title: '库存预警',
- icon: 'alert'
- // permission: 'M_goodsShelves_0'
- }
- },
- {
- path: '/inventoryManagement/warehouseAllocation',
- redirect: '/inventoryManagement/warehouseAllocation/list',
- name: 'warehouseAllocation',
- component: RouteView,
- meta: {
- title: '仓库调拨',
- icon: 'gateway'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehouseAllocationList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/warehouseAllocation/list.vue'),
- meta: {
- title: '仓库调拨列表',
- icon: 'gateway',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'add',
- name: 'warehouseAllocationAdd',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/warehouseAllocation/edit.vue'),
- meta: {
- title: '新增仓库调拨',
- icon: 'gateway',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'edit/:id',
- name: 'warehouseAllocationEdit',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/warehouseAllocation/edit.vue'),
- meta: {
- title: '编辑仓库调拨',
- icon: 'gateway',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'detail/:id/:sn',
- name: 'warehouseAllocationDetail',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/warehouseAllocation/detail.vue'),
- meta: {
- title: '仓库调拨详情',
- icon: 'gateway',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/warehouse',
- redirect: '/inventoryManagement/warehouse/list',
- name: 'warehouse',
- component: RouteView,
- meta: {
- title: '仓库管理',
- icon: 'deployment-unit'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehouseList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/warehouse/list.vue'),
- meta: {
- title: '仓库列表',
- icon: 'deployment-unit',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: '/inventoryManagement/storingLocation/:sn',
- name: 'storingLocationList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/warehouse/storingLocation/list.vue'),
- meta: {
- title: '仓位列表',
- icon: 'deployment-unit',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- },
- {
- path: '/inventoryManagement/inventoryChecking',
- redirect: '/inventoryManagement/inventoryChecking/list',
- name: 'inventoryChecking',
- component: RouteView,
- meta: {
- title: '库存盘点',
- icon: 'reconciliation'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryCheckingList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryChecking/list.vue'),
- meta: {
- title: '库存盘点列表',
- icon: 'reconciliation',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'overall/:id',
- name: 'inventoryCheckingOverall',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryChecking/overall.vue'),
- meta: {
- title: '盘点人盘点【全盘】',
- icon: 'reconciliation',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'selfDisk/:id',
- name: 'inventoryCheckingSelfDisk',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryChecking/selfDisk.vue'),
- meta: {
- title: '盘点人盘点【自选盘点】',
- icon: 'reconciliation',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'detail/:id',
- name: 'inventoryCheckingDetail',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryChecking/detail.vue'),
- meta: {
- title: '库存盘点详情',
- icon: 'reconciliation',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'makeInventory/:id',
- name: 'inventoryCheckingMakeInventory',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryChecking/makeInventory.vue'),
- meta: {
- title: '待盘点【盘点】',
- icon: 'reconciliation',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'makeInventory/detail/:id', /* 待盘点【盘点】详情 */
- name: 'inventoryCheckingMakeInventoryDetail',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryChecking/makeInventoryDetail.vue'),
- meta: {
- title: '库存盘点详情',
- icon: 'reconciliation',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'financialAudit/detail/:id', /* 财务审核详情 */
- name: 'inventoryCheckingFinancialAuditDetail',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/inventoryManagement/inventoryChecking/financialAuditDetail.vue'),
- meta: {
- title: '库存盘点详情',
- icon: 'reconciliation',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- }
- ]
- },
- // 调拨管理
- {
- path: '/allocationManagement',
- redirect: '/allocationManagement/chainTransferOut',
- component: PageView,
- meta: {
- title: '调拨管理',
- icon: 'cluster'
- // permission: 'M_shop'
- },
- children: [
- {
- path: '/allocationManagement/chainTransferOut',
- redirect: '/allocationManagement/chainTransferOut/list',
- name: 'chainTransferOut',
- component: RouteView,
- meta: {
- title: '连锁调出',
- icon: 'pull-request'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'chainTransferOutList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/allocationManagement/chainTransferOut/list.vue'),
- meta: {
- title: '连锁调出列表',
- icon: 'pull-request',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'add',
- name: 'chainTransferOutAdd',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/allocationManagement/chainTransferOut/edit.vue'),
- meta: {
- title: '新增连锁调出',
- icon: 'pull-request',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'edit/:id',
- name: 'chainTransferOutEdit',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/allocationManagement/chainTransferOut/edit.vue'),
- meta: {
- title: '编辑连锁调出',
- icon: 'pull-request',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'detail/:id/:sn',
- name: 'chainTransferOutDetail',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/allocationManagement/chainTransferOut/detail.vue'),
- meta: {
- title: '连锁调出详情',
- icon: 'pull-request',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- }
- ]
- },
- // 促销管理
- {
- path: '/promotionRulesManagement',
- redirect: '/promotionRulesManagement/promotionRules',
- component: PageView,
- meta: {
- title: '促销管理',
- icon: 'cluster'
- // permission: 'M_shop'
- },
- children: [
- {
- path: '/promotionRulesManagement/promotionRules',
- redirect: '/promotionRulesManagement/promotionRules/list',
- name: 'promotionRules',
- component: RouteView,
- meta: {
- title: '促销规则管理',
- icon: 'pull-request'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'promotionRulesManagementList',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/promotionRulesManagement/promotionRules/list.vue'),
- meta: {
- title: '促销规则列表',
- icon: 'pull-request',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'add',
- name: 'promotionRulesManagementAdd',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/promotionRulesManagement/promotionRules/edit.vue'),
- meta: {
- title: '新增促销规则',
- icon: 'pull-request',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'edit/:id',
- name: 'promotionRulesManagementEdit',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/promotionRulesManagement/promotionRules/edit.vue'),
- meta: {
- title: '编辑促销规则',
- icon: 'pull-request',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- },
- {
- path: 'detail/:id/:sn',
- name: 'promotionRulesManagementDetail',
- component: () => import(/* webpackChunkName: "shop" */ '@/views/promotionRulesManagement/promotionRules/detail.vue'),
- meta: {
- title: '促销规则详情',
- icon: 'pull-request',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- }
- ]
- },
- // 财务管理
- {
- path: '/financialManagement',
- redirect: '/financialManagement/inventoryReview',
- component: PageView,
- meta: {
- title: '财务管理',
- icon: 'property-safety'
- // permission: 'M_shop'
- },
- children: [
- {
- path: '/financialManagement/inventoryReview',
- redirect: '/financialManagement/inventoryReview/list',
- name: 'inventoryReview',
- component: RouteView,
- meta: {
- title: '盘点审核',
- icon: 'laptop'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'inventoryReviewList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/inventoryReview/list.vue'),
- meta: {
- title: '盘点审核列表',
- icon: 'laptop',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'detail/:id',
- name: 'inventoryReviewDetail',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/inventoryReview/detail.vue'),
- meta: {
- title: '盘点审核详情',
- icon: 'laptop',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- },
- {
- path: '/financialManagement/returnConfirmation',
- redirect: '/financialManagement/returnConfirmation/list',
- name: 'returnConfirmation',
- component: RouteView,
- meta: {
- title: '退货确认',
- icon: 'pull-request'
- // permission: 'M_goodsManage_list'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'returnConfirmationList',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/returnConfirmation/list.vue'),
- meta: {
- title: '退货确认列表',
- icon: 'pull-request',
- hidden: true
- // permission: 'M_goodsManage_list'
- }
- },
- {
- path: 'detail/:id',
- name: 'returnConfirmationDetail',
- component: () => import(/* webpackChunkName: "financialManagement" */ '@/views/financialManagement/returnConfirmation/detail.vue'),
- meta: {
- title: '退货确认详情',
- icon: 'pull-request',
- hidden: true
- // permission: 'B_goodsManage_edit'
- }
- }
- ]
- }
- ]
- },
- // // 菜单管理
- // {
- // path: '/menusAuth',
- // redirect: '/bnSetting/menusAuth',
- // component: PageView,
- // meta: {
- // title: '菜单管理',
- // icon: 'bars'
- // // permission: 'M_menusAuth_0'
- // },
- // children: [
- // {
- // path: '/menusAuth/storeMenus',
- // name: 'storeMenus',
- // component: () => import(/* webpackChunkName: "bnSetting" */ '@/views/bnSetting/menu/storeMenus.vue'),
- // meta: {
- // title: '连锁菜单管理',
- // icon: 'shop'
- // // permission: 'M_menusAuth_lsMenus'
- // }
- // },
- // // {
- // // path: '/menusAuth/adminMenus',
- // // name: 'adminMenus',
- // // component: () => import(/* webpackChunkName: "bnSetting" */ '@/views/bnSetting/menu/adminMenus.vue'),
- // // meta: {
- // // title: 'boss菜单管理',
- // // icon: 'appstore',
- // // // permission: 'M_menusAuth_adminMenus'
- // // }
- // // },
- // {
- // path: '/menusAuth/menu',
- // name: 'powerMenu',
- // component: () => import(/* webpackChunkName: "auth" */ '@/views/power/menu/menu.vue'),
- // meta: {
- // title: 'IT菜单管理',
- // icon: 'profile'
- // // permission: 'M_menusAuth_menu'
- // }
- // }
- // ]
- // },
- // 权限管理
- {
- path: '/auth',
- redirect: '/auth/userList',
- component: PageView,
- meta: {
- title: '权限管理',
- icon: 'lock'
- // permission: 'M_auth_0'
- },
- children: [
- {
- path: '/auth/userList',
- name: 'powerUserList',
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/user/userList.vue'),
- meta: {
- title: '用户管理',
- icon: 'user'
- // permission: 'M_auth_userList'
- }
- },
- {
- path: '/auth/roleList',
- name: 'powerRoleList',
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/role/roleList.vue'),
- meta: {
- title: '角色管理',
- icon: 'solution'
- // permission: 'M_auth_roleList'
- }
- },
- {
- path: '/menusAuth/adminMenus',
- name: 'adminMenus',
- component: () => import(/* webpackChunkName: "bnSetting" */ '@/views/bnSetting/menu/adminMenus.vue'),
- meta: {
- title: '菜单管理',
- icon: 'appstore'
- // permission: 'M_menusAuth_adminMenus'
- }
- }
- ]
- },
- // 系统设置
- {
- 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: '*',
- 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')
- }
- ]
|