mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 04:46:46 +08:00
feat:增加旧系统页面
This commit is contained in:
@@ -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: "问答管理",
|
||||
},
|
||||
];
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user