You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.9 KiB

3 years ago
/** 数据比对路由 */
//import Layout from '@/layout/firstLayout'
import Layout from '@/layout'
const businessdataRouter = {
path: '/wms-js',
3 years ago
component: Layout,
redirect: 'wms-js',
3 years ago
name: '大众备件结算',
meta: {
//requiresAuth: true,
title: '大众看板备件发货',
3 years ago
index: 0,
type: 'crm',
icon: '业务',
keepAlive: false,
},
children: [
// {
// path: '/yu-fahuo-kb',
// component: () => import('@/views/ux/businessdata/deliverGoodsDrag'),
// name: 'jfcarkb',//命名路由
// meta: {
// title: '结算与开票数据对比',
// roles: ['SettleAccount.Reports'],
// icon: '发货'
// }
// },
// {
// path: '/jf-car-kb',
// component: () => import('@/views/ux/businessdata/deliverGoods'),
// name: 'jfcarkb',//命名路由
// meta: {
// title: '备件发出未结算数据',
// roles: ['SettleAccount.Reports'],
// icon: '发货'
// }
// },
3 years ago
{
path: '/wms-kanban',
component: () => import('@/views/ux/vw/dataInput/wmsKanban'),
name: 'WMSVWKanBan',
3 years ago
meta: {
title: '大众看板发货明细',
3 years ago
roles: ['SettleAccount.Reports'],
icon: '供货'
}
},
{
path: '/wms-sparepart',
component: () => import('@/views/ux/vw/dataInput/wmsSparePart'),
name: 'WMSSparePart',//命名路由
3 years ago
meta: {
title: '大众备件发货明细',
3 years ago
roles: ['SettleAccount.Reports'],
icon: '客户零件'
}
}
]
}
export default businessdataRouter