dbsd_kczx/src/router/routes/modules/stuzy/stuzy.ts

69 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { AppRouteModule } from '/@/router/types';
// import { LAYOUT } from '/@/router/constant';
import { t } from '/@/hooks/web/useI18n';
const stuzy: AppRouteModule = {
path: '/stuzy',
name: 'stuzy',
component: () => import('/@/views/site/studentWdkc/studentMain.vue'),
redirect: '/stuzy/studentMain',
meta: {
isAddStaticPath: true,//是否静态引入不用配置menu表
orderNo: 104,
title: '学生作业',
},
children: [
{
path: 'studentMain',
name: 'studentMain',
meta: {
title: '作业管理',
},
component: () => import('/@/views/site/studentWdkc/studentZyxx.vue'),
},
{
path: 'studentDqzy',
name: 'studentDqzy',
meta: {
title: '当前作业',
},
component: () => import('/@/views/zy/zyInfo/StudentZyInfoList.vue'),
},
{
path: 'studentLszy',
name: 'studentLszy',
meta: {
title: '历史作业',
},
component: () => import('/@/views/zy/zyInfo/SutdentZyInfoHistoryList.vue'),
},
{
path: 'stuCeshiWenjuan',
name: 'stuCeshiWenjuan',
component: () => import('/@/views/kc/wjxCswj/WjxCswjStuList.vue'),
meta: {
title: '测试问卷',
},
},
{
path: 'stuDcwjWenjuan',
name: 'stuDcwjWenjuan',
component: () => import('/@/views/kc/wjxDcwj/WjxDcwjStuList.vue'),
meta: {
title: '调查问卷',
},
},
{
path: 'StudentGonggaoList',
name: 'StudentGonggaoList',
component: () => import('/@/views/zy/zyGonggao/StudentGonggaoList.vue'),
meta: {
title: '通知公告',
},
},
]
}
export default stuzy;