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