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.

57 lines
1.6 KiB

2 years ago
//FIS结算
import Layout from '@/layout'
const vwNoBarcodeRouter = {
path: '/vwnobarcodedata',
component: Layout,
redirect: 'vwnobarcodedata',
name: 'basedata',
//hidden: true,
meta: {
//requiresAuth: true,
title: '大众看板结算(无条码)',
index: 0,
type: 'crm',
icon:'单据导入',
keepAlive: false,
},
children: [
{
path: '/vwr3-js',
component: () => import('@/views/ux/billManage/FisUnSettledDiff'),
name: 'R3js',//命名路由
meta: { title: '发出未结算数据',
//roles: ['abpvnext_master.Customer'],//控制页面角色(可以设置多个角色)
icon: '销售' }
},
{
path: '/settlement',
component: () => import('@/views/ux/billManage/FisUnSettledDiff'),
name: 'FisUnSettledDiff',//命名路由
meta: { title: '定价与结算单价对比',
//roles: ['abpvnext_master.ProjectPeople'],//控制页面角色(可以设置多个角色)
icon: '客户零件' }
},
{
path: '/claimDemage',
component: () => import('@/views/ux/billManage/claimDemage'),
name: 'ClaimDemage',
meta: {
title: '库存与开票数据比对',
icon: '索赔授权'
}
},
{
path: '/settlement',
component: () => import('@/views/ux/billManage/FisUnSettledDiff'),
name: 'FisUnSettledDiff',//命名路由
meta: { title: '开票汇总数据',
//roles: ['abpvnext_master.ProjectPeople'],//控制页面角色(可以设置多个角色)
icon: '客户零件' }
},
]
}
export default vwNoBarcodeRouter