| | |
| | | </el-form> |
| | | |
| | | <el-table v-loading="listLoading" :data="tableData" border fit highlight-current-row style="width: 100%"> |
| | | <el-table-column align="center" prop="cheatUserName" label="作弊人名称" show-overflow-tooltip /> |
| | | <el-table-column align="center" prop="examName" label="考试名称" /> |
| | | <el-table-column align="center" prop="cheatUserName" label="姓名" show-overflow-tooltip /> |
| | | <el-table-column align="center" prop="examName" label="考试" /> |
| | | <el-table-column align="center" prop="createTime" label="作弊时间" /> |
| | | <!-- <el-table-column label="操作" align="center"> |
| | | <template slot-scope="{row}"> |
| | |
| | | </template> |
| | | </el-table-column> --> |
| | | </el-table> |
| | | <pagination v-show="total > 0" :total="total" :page.sync="queryParam.pageIndex" :limit.sync="queryParam.pageSize" |
| | | <pagination v-show="total > 0" :total="total" :page.sync="queryParam.currentPage" :limit.sync="queryParam.pageSize" |
| | | @pagination="search" /> |
| | | |
| | | <el-dialog :visible.sync="visible" width="400px"> |
| | |
| | | listLoading: true, |
| | | queryParam: { |
| | | name: '', |
| | | pageIndex: 1, |
| | | currentPage: 1, |
| | | pageSize: 10 |
| | | }, |
| | | formLoading: false, |
| | |
| | | }) |
| | | }, |
| | | edit(row) { |
| | | if (row) { |
| | | cheatApi.select(row.id).then(re => { |
| | | if (re.code === 1) { |
| | | this.form = re.data; |
| | |
| | | this.$message.error(re.message) |
| | | } |
| | | }) |
| | | } else { |
| | | this.getItemOrder(); |
| | | this.visible = true; |
| | | } |
| | | }, |
| | | status(row) { |
| | | let question = { |