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/renKeJiaoCheng/checkKecheng/dqxqkcDetail.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'), }, ] } export default stuzy;