zhuo
2025-03-13 f57cac888fba78982e3b46c1f45db0fbe16faa49
src/views/CNAS/resourceDemand/device/component/equipmentAcceptance.vue
@@ -177,7 +177,6 @@
      this.tableLoading = true
      getDeviceAcceptanceFileList({ acceptanceId: this.acceptanceId }).then(res => {
        this.tableLoading = false
        if (res.code === 201) return
        this.tableData = res.data
      }).catch(err => {
        this.tableLoading = false
@@ -197,7 +196,7 @@
    },
    // 下载
    upload(row) {
      this.$download.downloadFileFromUrl(row.fileUrl, row.fileName)
      this.$download.saveAs(row.fileUrl, row.fileName)
    },
    // 删除
    delete(row) {
@@ -209,7 +208,6 @@
        this.tableLoading = true
        delDeviceAcceptanceFileList({ acceptanceFileId: row.acceptanceFileId }).then(res => {
          this.tableLoading = false
          if (res.code === 201) return
          this.$message.success('删除成功')
          this.searchTableList()
        }).catch(err => {