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.

45 lines
1.1 KiB

2 years ago
/** 派格fis路由 */
//import Layout from '@/layout/firstLayout'
import Layout from '@/layout'
const pgfisPrint = {
path: '/pg-fis-print',
component: Layout,
redirect: 'fisprint',
name: 'pgfis',
meta: {
//requiresAuth: true,
title: '排序单打印',
index: 0,
type: 'crm',
icon: '业务',
keepAlive: false,
},
children: [
{
path: '/pg-m100normal-print',
component: () => import('@/views/pg-fis/basedate/m100Online/normalPritIndex.vue'),
name: 'pg-M100Online',//命名路由
meta: {
title: '日常打印M100信息',
//roles: ['SettleAccount.Reports'],
icon: '客户零件'
}
},
{
path: '/select',
component: () => import('@/views/pg-fis/basedate/select'),
name: 'select',//命名路由
meta: {
title: 'M100查询',
//roles: ['SettleAccount.Reports'],
icon: '结算对比'
}
}
]
}
export default pgfisPrint