feat:增加旧系统页面

This commit is contained in:
lixg
2022-12-11 15:36:41 +08:00
parent d1bec65923
commit ca067afa02
13 changed files with 504 additions and 3 deletions

View File

@@ -341,6 +341,74 @@ export default {
},
];
}
if (
n.indexOf("/examinationcenter") !== -1 ||
n.indexOf("/ExaminationCenter") !== -1
) {
state.list = [
{
name: "考试",
},
{
name: "考试管理",
},
];
}
if (
n.indexOf("/questionmanage") !== -1 ||
n.indexOf("/QuestionManage") !== -1
) {
state.list = [
{
name: "考试",
},
{
name: "试题管理",
},
];
}
if (
n.indexOf("/papermanage") !== -1 ||
n.indexOf("/PaperManage") !== -1
) {
state.list = [
{
name: "考试",
},
{
name: "试卷管理",
},
];
}
if (
n.indexOf("/casemanage") !== -1 ||
n.indexOf("/CaseManage") !== -1
) {
state.list = [
{
name: "案例管理",
},
];
}
if (
n.indexOf("/articlemanage") !== -1 ||
n.indexOf("/ArticleManage") !== -1
) {
state.list = [
{
name: "文章管理",
},
];
}
if (n.indexOf("/qamanage") !== -1 || n.indexOf("/QAManage") !== -1) {
state.list = [
{
name: "问答管理",
},
];
}
}
);