gaoluyang
3 天以前 de8f8ef6e87ebf0d207011b35a7f43e41200011d
src/views/CNAS/systemManagement/internalAuditManagement/components/ViewTestRecord.vue
@@ -99,7 +99,6 @@
      this.tableLoading = true
      getInternalCorrectFileList({ correctId: this.info.correctId }).then(res => {
        this.tableLoading = false
        if (res.code === 201) return
        this.tableData = res.data
      }).catch(err => {
        this.tableLoading = false
@@ -116,14 +115,13 @@
    },
    // 下载
    upload(row) {
      this.$download.downloadFileFromUrl(row.fileUrl, row.fileName)
      this.$download.saveAs(row.fileUrl, row.fileName)
    },
    // 删除
    delete(row) {
      this.tableLoading = true
      delInternalCorrectFile({ correctFileId: row.correctFileId }).then(res => {
        this.tableLoading = false
        if (res.code === 201) return
        this.$message.success('删除成功')
        this.searchTableList()
      }).catch(err => {