From c3bb35b20d6e076f73a1cad50fd6b9b94ca399a7 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期一, 06 一月 2025 16:15:05 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/views/onlineEducation/examManage/index.vue | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/views/onlineEducation/examManage/index.vue b/src/views/onlineEducation/examManage/index.vue index a61c63b..cedfacb 100644 --- a/src/views/onlineEducation/examManage/index.vue +++ b/src/views/onlineEducation/examManage/index.vue @@ -24,7 +24,7 @@ <pagination v-show="total>0" :total="total" - :page.sync="queryParams.pageIndex" + :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" /> @@ -33,6 +33,7 @@ <script> import { listExam, listStudent } from '@/api/onlineEducation/student' +import Cookies from 'js-cookie' export default { name: "nPeopleManage", @@ -49,7 +50,7 @@ expertTypes: [], expertList: [], queryParams: { - pageIndex: 1, + pageNum: 1, pageSize: 10, name: '', idcard: '' @@ -57,7 +58,11 @@ }; }, created() { - this.getList({}); + if(Cookies.get('examRecord')){ + + }else{ + this.getList({}); + } }, methods: { getList(data){ -- Gitblit v1.9.2