From 69f38c94d4297095d950499ebfbdb04d51ea4087 Mon Sep 17 00:00:00 2001 From: coding_liang Date: Mon, 22 May 2023 08:49:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8F=91=E5=B8=83=E8=AF=95?= =?UTF-8?q?=E5=8D=B7=E5=8A=9F=E8=83=BD2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Home.vue | 5 +++++ src/router/index.js | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/components/Home.vue b/src/components/Home.vue index a7ae975..fdfece1 100644 --- a/src/components/Home.vue +++ b/src/components/Home.vue @@ -86,6 +86,11 @@ export default { "path": "/createExam", "title": "试卷创编" }, + { + "id": 203, + "path": "/publishExam", + "title": "试卷发布" + }, ], "title": "试卷管理" diff --git a/src/router/index.js b/src/router/index.js index 1fed762..1e451a1 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -7,6 +7,9 @@ import Welcome from '../components/Welcome.vue' import User from '../components/admin/User.vue' import examList from '../components/exam/examList.vue' import editExam from '../components/exam/editExam' +import publishExam from '../components/exam/publishExam' + + import success from '../components/Success.vue' import correctList from '../components/solution/correctList.vue' import readed from'../components/solution/readed.vue' @@ -49,7 +52,9 @@ const routes = [ { path:'/file', component: file}, { path:'/essayProblem', component: essayProblem}, { path:'/judgmentProblem', component: judgmentProblem}, - { path:'/updateExam', component: updateExam} + { path:'/updateExam', component: updateExam}, + { path:'/publishExam', component: publishExam} + ], } -- Gitee