| | |
| | | <template> |
| | | <div class="app-container"> |
| | | <el-form :model="queryParam" ref="queryForm" :inline="true"> |
| | | <el-form-item label="试卷ID:"> |
| | | <el-input v-model="queryParam.id" clearable @input="search"></el-input> |
| | | <el-form-item label="试卷名称:"> |
| | | <el-input v-model="queryParam.name" size="small" clearable @input="search"></el-input> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" @click="submitForm" size="small">查询</el-button> |
| | |
| | | data() { |
| | | return { |
| | | queryParam: { |
| | | id: null, |
| | | name: null, |
| | | level: null, |
| | | subjectId: null, |
| | | pageIndex: 1, |
| | |
| | | }) |
| | | }, |
| | | deletePaper (row) { |
| | | this.$confirm('此操作将永久删除该成员, 是否继续?', '提示', { |
| | | this.$confirm('此操作将永久删除该试卷, 是否继续?', '提示', { |
| | | confirmButtonText: '确定', |
| | | cancelButtonText: '取消', |
| | | type: 'warning' |