From bdc9961678144198fd157e9df38f46ce3faf0661 Mon Sep 17 00:00:00 2001 From: long <18782126717@163.com> Date: Fri, 25 Nov 2022 15:02:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=B6=E5=BC=8F=E8=A1=A8=E6=A0=BC=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD=E9=A2=84=E8=A7=88=E6=B7=BB=E5=8A=A0=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProcessMaterialWarehousingStatement.vue | 21 ++++++++++++------- .../ProcessMaterialsPlanStatement.vue | 8 +++++++ .../ProcessMaterialsPlanStatement2.vue | 21 ++++++++++++------- 3 files changed, 36 insertions(+), 14 deletions(-) diff --git a/src/views/accessrecords/statement/ProcessMaterialWarehousingStatement.vue b/src/views/accessrecords/statement/ProcessMaterialWarehousingStatement.vue index a21050c..a52952b 100644 --- a/src/views/accessrecords/statement/ProcessMaterialWarehousingStatement.vue +++ b/src/views/accessrecords/statement/ProcessMaterialWarehousingStatement.vue @@ -63,12 +63,12 @@ this.showSessionId = window.location.search }, created() { - downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => { - console.log(data) - const blob = new Blob([data], { type: 'application/pdf' }) - this.pdfWord = window.URL.createObjectURL(blob) - - }) + // downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => { + // console.log(data) + // const blob = new Blob([data], { type: 'application/pdf' }) + // this.pdfWord = window.URL.createObjectURL(blob) + // + // }) // this.loadData(); }, activated() { @@ -86,6 +86,10 @@ // 下载 downWord() { downFile(this.url.queryPlandDownWord, { id: this.queryParam.id }).then((data) => { + if (!data) { + this.$message.warning("文件下载失败") + return + } const blob = new Blob([data]) // 把得到的结果用流对象转一下 var a = document.createElement('a') //创建一个标签 a.href = URL.createObjectURL(blob) // 将流文件写入a标签的href属性值 @@ -99,7 +103,10 @@ }, previewWord() { downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => { - console.log(data) + if (!data) { + this.$message.warning("文件预览失败") + return + } const blob = new Blob([data], { type: 'application/pdf' }) this.pdfSrc = window.URL.createObjectURL(blob) console.log(this.pdfSrc) diff --git a/src/views/accessrecords/statement/ProcessMaterialsPlanStatement.vue b/src/views/accessrecords/statement/ProcessMaterialsPlanStatement.vue index 1416a02..7b4b10b 100644 --- a/src/views/accessrecords/statement/ProcessMaterialsPlanStatement.vue +++ b/src/views/accessrecords/statement/ProcessMaterialsPlanStatement.vue @@ -86,6 +86,10 @@ // 下载 downWord() { downFile(this.url.queryPlandDownWord, { id: this.queryParam.id }).then((data) => { + if (!data) { + this.$message.warning("文件下载失败") + return + } const blob = new Blob([data]) // 把得到的结果用流对象转一下 var a = document.createElement('a') //创建一个标签 a.href = URL.createObjectURL(blob) // 将流文件写入a标签的href属性值 @@ -99,6 +103,10 @@ }, previewWord() { downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => { + if (!data) { + this.$message.warning("文件预览失败") + return + } console.log(data) const blob = new Blob([data], { type: 'application/pdf' }) this.pdfSrc = window.URL.createObjectURL(blob) diff --git a/src/views/accessrecords/statement/ProcessMaterialsPlanStatement2.vue b/src/views/accessrecords/statement/ProcessMaterialsPlanStatement2.vue index e14e52c..0a98127 100644 --- a/src/views/accessrecords/statement/ProcessMaterialsPlanStatement2.vue +++ b/src/views/accessrecords/statement/ProcessMaterialsPlanStatement2.vue @@ -63,12 +63,12 @@ this.showSessionId = window.location.search }, created() { - downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => { - console.log(data) - const blob = new Blob([data], { type: 'application/pdf' }) - this.pdfWord = window.URL.createObjectURL(blob) - - }) + // downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => { + // console.log(data) + // const blob = new Blob([data], { type: 'application/pdf' }) + // this.pdfWord = window.URL.createObjectURL(blob) + // + // }) // this.loadData(); }, activated() { @@ -86,6 +86,10 @@ // 下载 downWord() { downFile(this.url.queryPlandDownWord, { id: this.queryParam.id }).then((data) => { + if (!data) { + this.$message.warning("文件下载失败") + return + } const blob = new Blob([data]) // 把得到的结果用流对象转一下 var a = document.createElement('a') //创建一个标签 a.href = URL.createObjectURL(blob) // 将流文件写入a标签的href属性值 @@ -99,7 +103,10 @@ }, previewWord() { downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => { - console.log(data) + if (!data) { + this.$message.warning("文件预览失败") + return + } const blob = new Blob([data], { type: 'application/pdf' }) this.pdfSrc = window.URL.createObjectURL(blob) console.log(this.pdfSrc)