From 102f2220365de7cd04d7cd07d8ff8ef03ca2c460 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期三, 19 二月 2025 08:49:38 +0800 Subject: [PATCH] 修改跳转和双向绑定 --- src/views/onlineEducation/examManage/index.vue | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/views/onlineEducation/examManage/index.vue b/src/views/onlineEducation/examManage/index.vue index 7330bd2..cedfacb 100644 --- a/src/views/onlineEducation/examManage/index.vue +++ b/src/views/onlineEducation/examManage/index.vue @@ -33,6 +33,7 @@ <script> import { listExam, listStudent } from '@/api/onlineEducation/student' +import Cookies from 'js-cookie' export default { name: "nPeopleManage", @@ -57,7 +58,11 @@ }; }, created() { - this.getList({}); + if(Cookies.get('examRecord')){ + + }else{ + this.getList({}); + } }, methods: { getList(data){ -- Gitblit v1.9.2