12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367 |
- import Layout from '@/page/index/'
- export default [{
- path: '/wel',
- component: Layout,
- redirect: '/wel/index',
- children: [{
- path: 'index',
- name: '首页',
- meta: {
- i18n: 'dashboard',
- keepAlive: true,
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/wel/index')
- }, {
- path: 'dashboard',
- name: '控制台',
- meta: {
- i18n: 'dashboard',
- menu: false,
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/wel/dashboard')
- }]
- }, {
- path: '/test',
- component: Layout,
- redirect: '/test/index',
- children: [{
- path: 'index',
- name: '测试页',
- meta: {
- i18n: 'test'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/test')
- }]
- }, {
- path: '/dict-horizontal',
- component: Layout,
- redirect: '/dict-horizontal/index',
- children: [{
- path: 'index',
- name: '字典管理',
- meta: {
- i18n: 'dict'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-horizontal')
- }]
- }, {
- path: '/dict-vertical',
- component: Layout,
- redirect: '/dict-vertical/index',
- children: [{
- path: 'index',
- name: '字典管理',
- meta: {
- i18n: 'dict'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-vertical')
- }]
- }, {
- path: '/info',
- component: Layout,
- redirect: '/info/index',
- children: [{
- path: 'index',
- name: '个人信息',
- meta: {
- i18n: 'info'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/system/userinfo')
- }]
- }, {
- path: '/basicData/customerInformation/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerInformation/detailsPageEdit',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/detailsPageEdit')
- }]
- },
- {
- path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
- meta: {
- i18n: 'detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/detailsPageEdit')
- }]
- },
- {
- path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
- meta: {
- i18n: 'detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/detailsPageEdit')
- }]
- },
- //商品false
- {
- path: '/commodityType_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/commodityType_detailsPageEdit',
- meta: {
- i18n: 'commodityType_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/detailsPageEdit')
- }]
- },
- //商城管理
- //商品列表详情页
- {
- path: '/productList_detailsPageEdit',
- component: Layout,
- hidden: true,
- children: [{
- path: '/productList_detailsPageEdit',
- meta: {
- i18n: 'productList_detailsPageEdit'
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/mallManagement/commodity/productList/detailsPageEdit')
- }]
- },
- //产品
- {
- path: '/basicData/productInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/productInformation/index',
- name: '产品信息',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/productInformation/index')
- }]
- },
- //客户分类
- {
- path: '/basicData/customerCategory/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/customerCategory/index',
- name: '客户分类',
- meta: {
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerCategory/index')
- }]
- },
- //客户资料
- {
- path: '/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')
- }]
- },
- //经销商产品调拨
- {
- path: '/dealer/allocation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/allocation/index',
- name: '产品调拨',
- meta: {
- i18n: '/dealer/allocation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/allocation/index')
- }]
- },
- //数据明细(N)
- {
- path: '/statisticAnalysis/dataDetail/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/dataDetail/index',
- name: '数据明细(N)',
- meta: {
- i18n: '/statisticAnalysis/dataDetail/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
- }]
- },
- //销售对账
- {
- path: '/statisticAnalysis/salesReconciliation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesReconciliation/index',
- name: '销售对账',
- meta: {
- i18n: '/statisticAnalysis/salesReconciliation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliation/index')
- }]
- },
- ]
|