fuliqi
2024-07-02 b17c2ddebcfaeaa48edc1eeca5ee0dc03d9fde90
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 '未完成'
      }
    },