xiangpei
2024-05-27 d4b7d0ff020ff74e85f01ff272af6dafcbac5458
src/views/exam/paper/edit.vue
@@ -100,8 +100,8 @@
    </el-form>
    <el-dialog :visible.sync="questionPage.showDialog" width="70%">
      <el-form :model="questionPage.queryParam" ref="queryForm" :inline="true">
        <el-form-item label="ID:">
          <el-input v-model="questionPage.queryParam.id" clearable></el-input>
        <el-form-item label="题干:">
          <el-input v-model="questionPage.queryParam.titleContent" clearable></el-input>
        </el-form-item>
        <el-form-item label="题型:">
          <el-select v-model="questionPage.queryParam.questionType" clearable>
@@ -186,7 +186,8 @@
        pageIndex: 1,
        pageSize: 5,
        listLoading: true,
        multipleSelection: []
        multipleSelection: [],
        excludeTagIds: []
      },
      tableData: [],
      total: 0,
@@ -240,7 +241,7 @@
        multipleSelection: [],
        showDialog: false,
        queryParam: {
          id: null,
          titleContent: "",
          questionType: null,
          subjectId: 1,
          pageIndex: 1,
@@ -448,7 +449,7 @@
        };
      });
      this.form.examineeList = this.student.multipleSelection.map((item) => item.realName);
      this.studentDialog = false;
    },