110 lines
2.7 KiB
TypeScript
110 lines
2.7 KiB
TypeScript
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/StudentZyInfoMainList.vue'),
|
||
},
|
||
{
|
||
path: 'studentQmks',
|
||
name: 'studentQmks',
|
||
meta: {
|
||
title: '期末考试',
|
||
},
|
||
component: () => import('/@/views/zy/zyInfo/StudentZyInfoQmksMainList.vue'),
|
||
},
|
||
{
|
||
path: 'studentLszy',
|
||
name: 'studentLszy',
|
||
meta: {
|
||
title: '历史作业',
|
||
},
|
||
component: () => import('/@/views/zy/zyInfo/SutdentZyInfoHistoryList.vue'),
|
||
},
|
||
{
|
||
path: 'stuCeshiWenjuan',
|
||
name: 'stuCeshiWenjuan',
|
||
component: () => import('/@/views/kc/wjxCswj/WjxCswjStuMainList.vue'),
|
||
meta: {
|
||
title: '测试问卷',
|
||
},
|
||
},
|
||
{
|
||
path: 'stuDcwjWenjuan',
|
||
name: 'stuDcwjWenjuan',
|
||
component: () => import('/@/views/kc/wjxDcwj/WjxDcwjStuMainList.vue'),
|
||
meta: {
|
||
title: '调查问卷',
|
||
},
|
||
},
|
||
{
|
||
path: 'StudentGonggaoList',
|
||
name: 'StudentGonggaoList',
|
||
component: () => import('/@/views/zy/zyGonggao/StudentGonggaoList.vue'),
|
||
meta: {
|
||
title: '通知公告',
|
||
},
|
||
},
|
||
{
|
||
path: 'stuJiaoXueDanYuanNeiRong',
|
||
name: 'stuJiaoXueDanYuanNeiRong',
|
||
component: () => import('/@/views/zy/jiaoXueDanYuanNeiRong/stuIndex.vue'),
|
||
meta: {
|
||
title: '教学单元内容',
|
||
},
|
||
},
|
||
{
|
||
path: 'stuTlq',
|
||
name: 'stuTlq',
|
||
component: () => import('/@/views/zy/zyTlq/StuZyTlqList.vue'),
|
||
meta: {
|
||
title: '讨论区',
|
||
},
|
||
},
|
||
{
|
||
path: 'zyhp',
|
||
name: 'zyhp',
|
||
component: () => import('/@/views/zy/zyInfoStudentHp/ZyhpMainList.vue'),
|
||
meta: {
|
||
title: '作业互评',
|
||
},
|
||
},
|
||
{
|
||
path: 'zyhpDetail',
|
||
name: 'zyhpDetail',
|
||
component: () => import('/@/views/zy/zyInfoStudentHp/ZyInfoStudentHpMyhpfsDetailList.vue'),
|
||
meta: {
|
||
title: '作业互评结果',
|
||
},
|
||
},
|
||
|
||
]
|
||
}
|
||
|
||
export default stuzy;
|