zhouwx
2025-01-06 c3bb35b20d6e076f73a1cad50fd6b9b94ca399a7
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){