mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect-embeded.git
synced 2025-06-24 21:44:12 +08:00
37 lines
732 B
TypeScript
37 lines
732 B
TypeScript
![]() |
import type { AppRouteModule } from '/@/router/types';
|
||
|
|
||
|
import { EMBEDDED_LAYOUT } from '/@/router/constant';
|
||
|
|
||
|
const data: AppRouteModule = {
|
||
|
path: '/data',
|
||
|
name: 'Data',
|
||
|
component: EMBEDDED_LAYOUT,
|
||
|
meta: {
|
||
|
title: "数据管理",
|
||
|
orderNo: 100000,
|
||
|
ignoreAuth: true,
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
path: 'task',
|
||
|
name: 'TaskPage',
|
||
|
component: () => import('/@/views/data/detect-task/index.vue'),
|
||
|
meta: {
|
||
|
title: '任务',
|
||
|
ignoreAuth: true,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
path: 'event',
|
||
|
name: 'EventPage',
|
||
|
component: () => import('/@/views/data/event/index.vue'),
|
||
|
meta: {
|
||
|
title: '事件',
|
||
|
ignoreAuth: true,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
|
||
|
export default data;
|