spring
2025-03-07 2d55ed180fddd028bf4f839345bf0ef4d2f032e7
src/views/CNAS/systemManagement/documentControl/components/ControlledFileApplication.vue
@@ -461,8 +461,7 @@
    },
    handleDown(row) {
      if (!row.url) return this.$message.warning('文件未上传')
      let url = this.javaApi + '/word/' + row.url
      this.$download.saveAs(url, row.url);
      this.$download.downloadFileFromUrl(row.url, row.url);
    },
    async uploadPDF(pdfBlob) {
      const formData = new FormData();
@@ -509,7 +508,6 @@
      })
        .then(() => {
          delManageDocumentControlled({ id: row.id }).then((res) => {
            if (res.code == 201) return;
            this.$message.success("删除成功");
            this.refresh();
          });