xiangpei
2024-07-04 28e375f8c0782ed3476b2ba8c03e8b12e78690a4
src/views/exam/exam/MarkPaper.vue
@@ -117,10 +117,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 '未完成'
      }
    },