123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <template>
- <div class="audit-paper-audited">
- <el-form class="part-filter-form" :model="filter" inline>
- <el-form-item label="审核状态">
- <el-select v-model="filter.auditStatus" clearable placeholder="请选择">
- <el-option label="待审核" value="WITHDRAW"> </el-option>
- <el-option label="审核中" value="IN_REVIEW"> </el-option>
- <el-option label="已入库" value="PASS"> </el-option>
- <el-option label="已驳回" value="NOT_PASS"> </el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="danger" @click="toPage(1)">查询</el-button>
- </el-form-item>
- </el-form>
- <div>
- <el-table
- v-loading="loading"
- element-loading-text="拼命加载中"
- :data="dataList"
- >
- <el-table-column label="试题">
- <div slot-scope="scope" @click="toDetail(scope.row)">
- <rich-text
- class="row-question-body"
- title="点击查看试题"
- :text-json="scope.row.quesBody"
- ></rich-text>
- </div>
- </el-table-column>
- <el-table-column label="课程">
- <template slot-scope="scope">
- <span
- >{{ scope.row.course.name }}({{ scope.row.course.code }})</span
- >
- </template>
- </el-table-column>
- <el-table-column label="提交时间" prop="updateTime" width="170">
- </el-table-column>
- <el-table-column label="当前审核状态" prop="inReviewStatus" width="140">
- </el-table-column>
- <el-table-column label="状态" prop="auditStatusName" width="100">
- </el-table-column>
- <el-table-column label="操作" width="170" fixed="right">
- <template slot-scope="scope">
- <div class="operate_left">
- <el-button
- size="mini"
- type="primary"
- plain
- @click="toDetail(scope.row)"
- >详情</el-button
- >
- <el-button
- size="mini"
- type="primary"
- plain
- @click="toWithdraw(scope.row)"
- >撤回</el-button
- >
- </div>
- </template>
- </el-table-column>
- </el-table>
- <div class="part-page">
- <el-pagination
- :current-page="currentPage"
- :page-size="pageSize"
- :page-sizes="[10, 20, 50, 100, 200, 300]"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- @current-change="toPage"
- @size-change="handleSizeChange"
- >
- </el-pagination>
- </div>
- </div>
- <!-- QuestionPreviewDialog -->
- <question-preview-dialog
- ref="QuestionPreviewDialog"
- :question="curQuestion"
- ></question-preview-dialog>
- </div>
- </template>
- <script>
- import { auditQuestionApplyPageListApi, withdrawQuestionApi } from "../api";
- import QuestionPreviewDialog from "./QuestionPreviewDialog.vue";
- export default {
- name: "AuditQuestionApply",
- components: { QuestionPreviewDialog },
- data() {
- return {
- filter: { auditStatus: "" },
- dataList: [],
- currentPage: 1,
- pageSize: 10,
- total: 0,
- loading: false,
- curQuestion: {},
- };
- },
- mounted() {
- this.toPage(1);
- },
- methods: {
- toPage(page) {
- this.currentPage = page;
- this.getList();
- },
- async getList() {
- this.loading = true;
- const res = await auditQuestionApplyPageListApi({
- ...this.filter,
- curPage: this.currentPage,
- pageSize: this.pageSize,
- }).catch(() => {});
- this.loading = false;
- if (!res) return;
- this.dataList = res.data.content;
- this.total = res.data.totalElements;
- },
- handleSizeChange(val) {
- this.pageSize = val;
- this.toPage(1);
- },
- toDetail(row) {
- this.curQuestion = row;
- this.$refs.QuestionPreviewDialog.open();
- },
- async toWithdraw(row) {
- const confirm = await this.$confirm(`确定要撤销该试题的提交吗?`, "提示", {
- type: "warning",
- }).catch(() => {});
- if (confirm !== "confirm") return;
- await withdrawQuestionApi([row.id]);
- this.$message.success("操作成功!");
- this.getList();
- },
- },
- };
- </script>
|