xiangpei
2024-07-09 8a968bcc9d96c6ac88c6ec85b27be63ae40aef36
src/views/exam/exam/MarkPaper.vue
@@ -71,12 +71,6 @@
      >
      </el-table-column>
      <el-table-column
        align="center"
        prop="phone"
        label="系统自动估分(选择题型)"
      >
      </el-table-column>
      <el-table-column
        label="操作"
        align="center"
        width="300px"
@@ -117,10 +111,10 @@
    }
  },
  methods: {
    statusFormatter (row) {
      if (row.status === 'finish' || row.markPaperStatus === 'finish') {
    statusFormatter (row, column, cellValue, index) {
      if (cellValue === 'finish') {
        return '完成'
      } else if (row.status === 'temp' || row.markPaperStatus === 'temp') {
      } else if (cellValue === 'temp') {
        return '未完成'
      }
    },