| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321 |
- import Layout from '@/page/index/'
- export default [{
- path: '/wel',
- component: Layout,
- redirect: '/wel/index',
- children: [{
- path: 'index',
- name: '首页',
- meta: {
- i18n: 'dashboard'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/wel/index')
- }, {
- path: 'dashboard',
- name: '控制台',
- meta: {
- i18n: 'dashboard',
- menu: false,
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/wel/dashboard')
- }]
- }, {
- path: '/test',
- component: Layout,
- redirect: '/test/index',
- children: [{
- path: 'index',
- name: '测试页',
- meta: {
- i18n: 'test'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/test')
- }]
- }, {
- path: '/dict-horizontal',
- component: Layout,
- redirect: '/dict-horizontal/index',
- children: [{
- path: 'index',
- name: '字典管理',
- meta: {
- i18n: 'dict'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-horizontal')
- }]
- }, {
- path: '/dict-vertical',
- component: Layout,
- redirect: '/dict-vertical/index',
- children: [{
- path: 'index',
- name: '字典管理',
- meta: {
- i18n: 'dict'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-vertical')
- }]
- }, {
- path: '/info',
- component: Layout,
- redirect: '/info/index',
- children: [{
- path: 'index',
- name: '个人信息',
- meta: {
- i18n: 'info'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/system/userinfo')
- }]
- }, {
- path: '/basicData/customerInformation/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerInformation/detailsPageEdit',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/detailsPageEdit')
- }]
- },
- {
- path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
- meta: {
- i18n: 'detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/detailsPageEdit')
- }]
- },
- {
- path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
- meta: {
- i18n: 'detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/detailsPageEdit')
- }]
- },
- //商品false
- {
- path: '/commodityType_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/commodityType_detailsPageEdit',
- meta: {
- i18n: 'commodityType_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/detailsPageEdit')
- }]
- },
- //商城管理
- //商品列表详情页
- {
- path: '/productList_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/productList_detailsPageEdit',
- meta: {
- i18n: 'productList_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/mallManagement/commodity/productList/detailsPageEdit')
- }]
- },
- //产品
- {
- path: '/basicData/productInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/productInformation/index',
- name: '产品信息',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/productInformation/index')
- }]
- },
- //客户分类
- {
- path: '/basicData/customerCategory/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerCategory/index',
- name: '客户分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerCategory/index')
- }]
- },
- //客户资料
- {
- path: '/basicData/customerInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerInformation/index',
- name: '客户资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/index')
- }]
- },//车队资料
- {
- path: '/basicData/fleetInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/fleetInformation/index',
- name: '车队资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/fleetInformation/index')
- }]
- },
- //供应商分类
- {
- path: '/basicData/customerManagement/supplierType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/supplierType/index',
- name: '供应商分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierType/index')
- }]
- },
- //供应商资料
- {
- path: '/basicData/customerManagement/supplierMaterial/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/supplierMaterial/index',
- name: '供应商资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/index')
- }]
- },
- //公司分类
- {
- path: '/basicData/customerManagement/companyType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/companyType/index',
- name: '所属公司分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyType/index')
- }]
- },
- //公司资料
- {
- path: '/basicData/customerManagement/companyMaterial/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/companyMaterial/index',
- name: '所属公司资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/index')
- }]
- },
- //商品分类
- {
- path: '/basicData/commodityCategory/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/commodityCategory/index',
- name: '商品分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityCategory/index')
- }]
- },
- //商品分类
- {
- path: '/basicData/commodityType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/commodityType/index',
- name: '商品信息',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/index')
- }]
- },
- //费用分类
- {
- path: '/basicData/basicFeesType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/basicFeesType/index',
- name: '费用分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicFeesType/index')
- }]
- },
- //费用详情
- {
- path: '/basicData/basicFeesDesc/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/basicFeesDesc/index',
- name: '费用详情',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicFeesDesc/index')
- }]
- },
- //仓库分类
- {
- path: '/basicData/basicStorageType/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/basicStorageType/index',
- name: '仓库分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicStorageType/index')
- }]
- },
- //库区明细
- {
- path: '/basicData/basicStorageDesc/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/basicStorageDesc/index',
- name: '库区明细',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicStorageDesc/index')
- }]
- },
- //箱分类
- {
- path: '/basicData/container/type',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/container/type',
- name: '箱分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/type')
- }]
- },
- //集装箱
- {
- path: '/basicData/container/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/container/index',
- name: '集装箱',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/index')
- }]
- },
- //港口分类
- {
- path: '/basicData/portinformation/type',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/portinformation/type',
- name: '港口分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/portinformation/type')
- }]
- },
- //港口资料
- {
- path: '/basicData/portinformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/portinformation/index',
- name: '港口资料',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/portinformation/index')
- }]
- },
- //汇率管理
- {
- path: '/basicData/rateManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/rateManagement/index',
- name: '汇率管理',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/rateManagement/index')
- }]
- },
- //产品价格
- {
- path: '/maintenance/priceLibrary/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/priceLibrary/index',
- name: '产品价格',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceLibrary/index')
- }]
- },
- //销售详情页
- {
- path: '/businessManagement/salesOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/salesOrder/index',
- name: '销售订单(N)',
- meta: {
- i18n: 'businessManagement/salesOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/salesOrder/index')
- }]
- },
- //发货通知详情页
- {
- path: '/businessManagement/deliveryNotice/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/deliveryNotice/index',
- name: '客户收货(N)',
- meta: {
- i18n: 'businessManagement/deliveryNotice/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/deliveryNotice/index')
- }]
- },
- //价格管理详情页
- {
- path: '/priceManagement_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/priceManagement_detailsPageEdit',
- meta: {
- i18n: 'priceManagement_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/detailsPageEdit')
- }]
- },
- //销售政策详情页
- {
- path: '/maintenance/salesPolicy/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/salesPolicy/index',
- name: '销售政策',
- meta: {
- i18n: 'maintenance/salesPolicy/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/salesPolicy/index')
- }]
- },
- //秒杀详情页
- {
- path: '/panicBuyingInformation_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/panicBuyingInformation_detailsPageEdit',
- meta: {
- i18n: 'panicBuyingInformation_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/panicBuyingInformation/detailsPageEdit')
- }]
- },
- //上架商品详情页
- {
- path: '/goodsOnTheShelves_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/goodsOnTheShelves_detailsPageEdit',
- meta: {
- i18n: 'goodsOnTheShelves_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/goodsOnTheShelves/detailsPageEdit')
- }]
- },
- //收货单详情页
- {
- path: '/businessManagement/receipt/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/receipt/index',
- name: '工厂发货(N)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/receipt/index')
- }]
- },
- //采购订单详情页
- {
- path: '/businessManagement/purchaseOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/purchaseOrder/index',
- name: '采购订单(N)',
- meta: {
- i18n: 'businessManagement/purchaseOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/purchaseOrder/index')
- }]
- },
- // 采购合同详情页
- {
- path: '/purchase/contract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchase/contract/index',
- name: '采购订单(I)',
- meta: {
- i18n: '/purchase/contract/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/contract/index')
- }]
- },
- // 销售合同详情页
- {
- path: '/salesManagement/salesContract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salesManagement/salesContract/index',
- name: '销售订单(I)',
- meta: {
- i18n: '/salesManagement/salesContract/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salesManagement/salesContract/index')
- }]
- },
- // 进口 收货单详情页
- {
- path: '/importTrade/receipt/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/importTrade/receipt/index',
- name: '收货单(I)',
- meta: {
- i18n: '/importTrade/receipt/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/receipt/index')
- }]
- },
- // 进口 发货单详情页
- {
- path: '/importTrade/invoice/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/importTrade/invoice/index',
- name: '发货单(I)',
- meta: {
- i18n: 'importTrade/invoice/index',
- keepAlive: true
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/index')
- }]
- },
- // 出口 客户询价
- {
- path: '/exportTrade/customerInquiry/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/customerInquiry/index',
- name: '报价(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/customerInquiry/index')
- }]
- },
- // 出口 采购询价
- {
- path: '/exportTrade/purchaseInquiry/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/purchaseInquiry/index',
- name: '询价(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseInquiry/index')
- }]
- },
- // 出口 船务询价
- {
- path: '/exportTrade/shippingInquiry/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/shippingInquiry/index',
- name: '船务(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/shippingInquiry/index')
- }]
- },
- // 出口 销售订单
- {
- path: '/exportTrade/salesContract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/salesContract/index',
- name: '销售(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/salesContract/index')
- }]
- },
- // 出口 采购订单
- {
- path: '/exportTrade/purchaseContract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/purchaseContract/index',
- name: '采购(E)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseContract/index')
- }]
- },
- // 进口 发货单详情页
- {
- path: '/importInvoice_detailsPage',
- component: Layout,
- hidden: true,
- children: [{
- path: '/importInvoice_detailsPage',
- name: '发货单',
- meta: {
- i18n: 'importInvoice_detailsPage',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/detailsPageEdit')
- }]
- },
- // 出口 收货单
- {
- path: '/exportTrade/receipt/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/receipt/index',
- name: "收货(E)",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/receipt/index')
- }]
- },
- // 出口 发货单详情页
- {
- path: '/exportTrade/invoice/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/exportTrade/invoice/index',
- name: "发货(E)",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/invoice/index')
- }]
- },
- // 主营项目
- {
- path: '/workManagement/main-items/list',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/main-items/list',
- name: "主营业务",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/main-items/list')
- }]
- },
- // 统计列表
- {
- path: '/workManagement/receipt/statisticalList',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/receipt/statisticalList',
- name: "统计列表",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/statisticalList')
- }]
- },
- // 业绩分析
- {
- path: '/workManagement/performanceAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/performanceAnalysis/index',
- name: "业绩分析",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/performanceAnalysis/index')
- }]
- },
- // 结算详情页
- {
- path: '/workManagement/receipt/settleAccounts',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/receipt/settleAccounts',
- name: "结算",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/settleAccounts')
- }]
- },
- // 付费申请
- {
- path: '/financialManagement/paymentRequest/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/paymentRequest/index',
- name: "付费申请",
- meta: {
- i18n: '/financialManagement/paymentRequest/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentRequest/index')
- }]
- },
- // 付款结算
- {
- path: '/financialManagement/paymentSettle/paymentSettle',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/paymentSettle/paymentSettle',
- name: "付款结算",
- meta: {
- i18n: '/financialManagement/paymentSettle/paymentSettle',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettle/paymentSettle')
- }]
- },
- //收款结算
- {
- path: '/financialManagement/receiptSettle/receiptSettle',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/receiptSettle/receiptSettle',
- name: "收款结算",
- meta: {
- i18n: '/financialManagement/receiptSettle/receiptSettle',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/receiptSettle/receiptSettle')
- }]
- },
- //审批数据
- {
- path: '/approveData/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/approveData/index',
- name: "审批数据",
- meta: {
- i18n: '/approveData/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/approveData/index')
- }]
- },
- // 账单明细
- {
- path: '/bill_details',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/billDetails/billDetails',
- name: "账单明细",
- meta: {
- i18n: '/financialManagement/billDetails/billDetails',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/billDetails/billDetails')
- }]
- },
- //销项发票
- {
- path: '/financialManagement/outputInvoice/outputInvoice',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/outputInvoice/outputInvoice',
- name: "销项发票",
- meta: {
- i18n: '/financialManagement/outputInvoice/outputInvoice',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/outputInvoice/outputInvoice')
- }]
- },
- //进项发票
- {
- path: '/financialManagement/incomeInvoice/incomeInvoice',
- component: Layout,
- hidden: true,
- children: [{
- path: '/financialManagement/incomeInvoice/incomeInvoice',
- name: "进项发票",
- meta: {
- i18n: '/financialManagement/incomeInvoice/incomeInvoice',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/incomeInvoice/incomeInvoice')
- }]
- },
- //进口库存账
- {
- path: '/purchase/stockBill/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/purchase/stockBill/index',
- name: "库存账",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/stockBill/index')
- }]
- },
- //利润分析
- {
- path: '/statisticAnalysis/profit/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/profit/index',
- name: "利润分析",
- meta: {
- i18n: '/statisticAnalysis/profit/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profit/index')
- }]
- },
- //销售利润
- {
- path: '/statisticAnalysis/salesProfit/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesProfit/index',
- name: "利润分析",
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfit/index')
- }]
- },
- //利润分析
- {
- path: '/statisticAnalysis/royalty/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/royalty/index',
- name: "提成统计",
- meta: {
- i18n: '/statisticAnalysis/royalty/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/royalty/index')
- }]
- },
- // 订单详情
- {
- path: '/orderManagement/orderDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/orderManagement/orderDetail/index',
- name: "订单详情",
- meta: {
- i18n: '/orderManagement/orderDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/orderManagement/orderDetail/index')
- }]
- },
- {
- path: '/work/process/leave',
- component: Layout,
- redirect: '/work/process/leave/form',
- children: [{
- path: 'form/:processDefinitionId',
- name: '请假流程',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/leave/form')
- }, {
- path: 'handle/:taskId/:processInstanceId/:businessId',
- name: '处理请假流程',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/leave/handle')
- }, {
- path: 'detail/:processInstanceId/:businessId',
- name: '请假流程详情',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
- }]
- }, {
- path: '/work/process/test',
- component: Layout,
- redirect: '/work/process/test/form',
- children: [{
- path: 'form/:processDefinitionId',
- name: '请假流程',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/test/form')
- }, {
- path: 'handle/:taskId/:processInstanceId/:businessId',
- name: '处理请假流程',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/test/handle')
- }, {
- path: 'detail/:processInstanceId/:businessId',
- name: '请假流程详情',
- meta: {
- i18n: 'work'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
- }]
- },
- {
- path: '/businessManagement/inventoryAccount/detail',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/inventoryAccount/detail',
- name: '锁定订单明细',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/detail')
- }]
- },
- {
- path: '/basicData/facultyManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/facultyManagement/index',
- name: '教职工管理',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/facultyManagement/index')
- }]
- },
- {
- path: '/basicData/salaryConfiguration/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/salaryConfiguration/index',
- name: '学校标准配置',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/salaryConfiguration/index')
- }]
- },
- {
- path: '/salaryManagement/primarySchool/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salaryManagement/primarySchool/index',
- name: '小学部',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/primarySchool/index')
- }]
- },
- {
- path: '/salaryManagement/juniorhighSchool/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salaryManagement/juniorhighSchool/index',
- name: '初中部',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/juniorhighSchool/index')
- }]
- },
- {
- path: '/salaryManagement/highSchool/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salaryManagement/highSchool/index',
- name: '高中部',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/highSchool/index')
- }]
- },
- {
- path: '/salaryManagement/logisticsDepartment/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/salaryManagement/logisticsDepartment/index',
- name: '后勤部',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/logisticsDepartment/index')
- }]
- },
- {
- path: '/system/businessLock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/system/businessLock/index',
- name: '模块加锁',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/system/businessLock/index')
- }]
- },
- {
- path: '/dealer/sales/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/sales/index',
- name: '销售订单(D)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/sales/index')
- }]
- },
- {
- path: '/dealer/purchase/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/purchase/index',
- name: '采购订单(D)',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchase/index')
- }]
- },
- //陆运委托
- {
- path: '/landTransportation/placeAnOrder/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/placeAnOrder/index',
- name: '委托',
- meta: {
- i18n: '/landTransportation/placeAnOrder/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
- }]
- },
- //派车
- {
- path: '/landTransportation/dispatchingCars/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/dispatchingCars/index',
- name: '调度',
- meta: {
- i18n: '/landTransportation/dispatchingCars/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/dispatchingCars/index')
- }]
- },//陆运台账
- {
- path: '/landTransportation/reportAnalysis/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/landTransportation/reportAnalysis/index',
- name: '陆运台账',
- meta: {
- i18n: '/landTransportation/reportAnalysis/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/reportAnalysis/index')
- }]
- },
- //运维-价格管理
- {
- path: '/maintenance/priceManagement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/maintenance/priceManagement/index',
- name: '价格管理',
- meta: {
- i18n: '/maintenance/priceManagement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/index')
- }]
- },
- //经销商库存账
- {
- path: '/dealer/stock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/stock/index',
- name: '库存账(D)',
- meta: {
- i18n: '/dealer/stock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/index')
- }]
- },
- //内贸库存账
- {
- path: '/businessManagement/inventoryAccount/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/businessManagement/inventoryAccount/index',
- name: '库存账(N)',
- meta: {
- i18n: '/businessManagement/inventoryAccount/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/index')
- }]
- },
- //办公用品-采购申请
- {
- path: '/workManagement/purchaseApply/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/purchaseApply/index',
- name: '采购申请',
- meta: {
- i18n: '/workManagement/purchaseApply/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/purchaseApply/index')
- }]
- },
- //办公用品-入库
- {
- path: '/workManagement/warehousing/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/warehousing/index',
- name: '入库',
- meta: {
- i18n: '/workManagement/warehousing/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/warehousing/index')
- }]
- },
- //办公用品-领用
- {
- path: '/workManagement/requisition/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/requisition/index',
- name: '领用',
- meta: {
- i18n: '/workManagement/requisition/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/requisition/index')
- }]
- },
- //销售机会
- {
- path: '/saleLeads/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/saleLeads/index',
- name: '销售机会',
- meta: {
- i18n: '/saleLeads/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/saleLeads/index')
- }]
- },
- //办公用品库存账
- {
- path: '/workManagement/stock/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/stock/index',
- name: '库存账(O)',
- meta: {
- i18n: '/workManagement/stock/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/stock/index')
- }]
- },
- //报销
- {
- path: '/reimbursement/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/reimbursement/index',
- name: '报销',
- meta: {
- i18n: '/reimbursement/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/reimbursement/index')
- }]
- },
- //交接单
- {
- path: '/workManagement/handoverSheet/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/workManagement/handoverSheet/index',
- name: '交接单',
- meta: {
- i18n: '/workManagement/handoverSheet/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/handoverSheet/index')
- }]
- },
- ]
|