123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473 |
- 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: '/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: '/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: '/basicData/landTransportation/driverInformation/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/basicData/landTransportation/driverInformation/index',
- name: '司机',
- meta: {
- i18n: '/basicData/landTransportation/driverInformation/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/driverInformation/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')
- }]
- },
- //销售对账详情
- {
- path: '/statisticAnalysis/salesReconciliationDetails/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/salesReconciliationDetails/index',
- name: '销售对账详情',
- meta: {
- i18n: '/statisticAnalysis/salesReconciliationDetails/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliationDetails/index')
- }]
- },
- //应收总账
- {
- path: '/statisticAnalysis/collectLedger/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/collectLedger/index',
- name: '应收总账',
- meta: {
- i18n: '/statisticAnalysis/collectLedger/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/collectLedger/index')
- }]
- },
- //应付总账
- {
- path: '/statisticAnalysis/paymentLedger/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/paymentLedger/index',
- name: '应付总账',
- meta: {
- i18n: '/statisticAnalysis/paymentLedger/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/paymentLedger/index')
- }]
- },
- //利润总账
- {
- path: '/statisticAnalysis/profitLedger/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/statisticAnalysis/profitLedger/index',
- name: '利润总账',
- meta: {
- i18n: '/statisticAnalysis/profitLedger/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitLedger/index')
- }]
- },
- //采购合同(D)
- {
- path: '/dealer/purchaseContract/index',
- component: Layout,
- hidden: true,
- children: [{
- path: '/dealer/purchaseContract/index',
- name: '采购合同(D)',
- meta: {
- i18n: '/dealer/purchaseContract/index',
- keepAlive: true,
- },
- component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchaseContract/index')
- }]
- },
- ]
|