import type { AppRouteModule } from '/@/router/types'; import { LAYOUT } from '/@/router/constant'; const complaints: AppRouteModule = { path: '/supplierInfoManage', name: 'supplierInfoManage', component: LAYOUT, redirect: '/supplierInfoManage/index', meta: { hideChildrenInMenu: true, orderNo: 200, icon: 'ion:grid-outline', title: '供货商信息管理', roles: ['super'], }, children: [ { path: 'index', name: '供货商信息管理', component: () => import('/@/views/super/supplierInfoManage/供货商信息管理.vue'), meta: { title: '供货商信息管理', }, }, ], }; export default complaints;