diff --git a/src/api/purchase/supCompany.js b/src/api/purchase/supCompany.js index 125f0c4..53776a0 100644 --- a/src/api/purchase/supCompany.js +++ b/src/api/purchase/supCompany.js @@ -172,6 +172,15 @@ export function previewImage(data) { }); } +export function previewFile(url) { + return axios({ + url: url, + method: "get", + responseType: 'arraybuffer' + }); +} + + diff --git a/src/views/basic/product/productUdiType.vue b/src/views/basic/product/productUdiType.vue index f27d932..76df4f0 100644 --- a/src/views/basic/product/productUdiType.vue +++ b/src/views/basic/product/productUdiType.vue @@ -219,6 +219,7 @@ export default { }); }, handleSubForm(data, formName) { //新增,编辑 + debugger this.formName = formName; if (formName === "edit") { this.subData = JSON.parse(JSON.stringify(data)); diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue index de50d4f..03e0b63 100644 --- a/src/views/inout/InvoiceCkeck.vue +++ b/src/views/inout/InvoiceCkeck.vue @@ -271,7 +271,7 @@ import AcceptOrder from "@/views/inout/DialogReviewOrder"; import DialogInvoice from "@/views/inout/DialogInvoice"; import InvoiceRegister from "@/views/inout/InvoiceRegister"; -import {previewImage} from "@/api/purchase/supCompany"; +import {previewImage,previewFile} from "@/api/purchase/supCompany"; import ElImageViewer from "element-ui/packages/image/src/image-viewer"; import store from "@/store"; import {deleteRe} from "@/api/auth/register"; @@ -696,18 +696,34 @@ export default { showImgViewer(row) { this.certFileUrl = this.BASE_URL + - "/udiwms/image/register/file/getImage?type=image2&name="; + "/udiwms/image/register/file/getImage?type=image2&name="+this.inputQuery.licenseUrl; this.imgList = []; - previewImage({ - imageUrl: this.inputQuery.licenseUrl, - certFileUrl: this.certFileUrl, - }).then((response) => { - if (response.code === 20000) { - this.imgList = response.data; - } - console.log(this.imgList); - this.imgViewerVisible = true; - }); + this.imgList.push(this.certFileUrl) + let index = this.inputQuery.licenseUrl.lastIndexOf('.'); + if(index===-1){ + this.$message.error("文件名异常!") + return false + } + if(this.inputQuery.licenseUrl.substr(index+1)==='pdf'){ + let pdf = "application/pdf" + let binaryData = []; + previewFile(this.certFileUrl).then(res=>{ + binaryData.push(res); + let URL = window.URL.createObjectURL(new Blob(binaryData, {type: pdf})); + window.open(URL); + }) + // window.open(this.imgList[0]) + return false + } + this.imgViewerVisible = true; + // previewImage({ + // imageUrl: this.inputQuery.licenseUrl, + // certFileUrl: this.certFileUrl, + // }).then((response) => { + // if (response.code === 20000) { + // } + // console.log(this.imgList); + // }); const m = (e) => { e.preventDefault(); }; diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue index 86491e4..0929cda 100644 --- a/src/views/inout/InvoiceRegistration.vue +++ b/src/views/inout/InvoiceRegistration.vue @@ -537,7 +537,7 @@ import InvoiceRegistrationDetermine from "@/views/inout/InvoiceRegistrationDeter import {inspectionOrderPDFFromTemplateFile, orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint" import {getDeptListByUser} from "@/api/auth/authDept"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; -import {previewImage} from '@/api/purchase/supCompany' +import {previewImage,previewFile} from '@/api/purchase/supCompany' import ElImageViewer from "element-ui/packages/image/src/image-viewer"; @@ -773,19 +773,40 @@ export default { this.showSearch = !this.showSearch; }, showImgViewer(row) { - this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="; + this.certFileUrl = + this.BASE_URL + + "/udiwms/image/register/file/getImage?type=image2&name="+row.licenseUrl; this.imgList = []; - previewImage({imageUrl: row.licenseUrl, certFileUrl: this.certFileUrl}).then(response => { - if (response.code === 20000) { - this.imgList = response.data; - } - console.log(this.imgList) - this.imgViewerVisible = true; - }); + this.imgList.push(this.certFileUrl) + let index = row.licenseUrl.lastIndexOf('.'); + if(index===-1){ + this.$message.error("文件名异常!") + return false + } + if(row.licenseUrl.substr(index+1)==='pdf'){ + let pdf = "application/pdf" + let binaryData = []; + previewFile(this.certFileUrl).then(res=>{ + binaryData.push(res); + let URL = window.URL.createObjectURL(new Blob(binaryData, {type: pdf})); + window.open(URL); + }) + // window.open(this.imgList[0]) + return false + } + this.imgViewerVisible = true; + // previewImage({ + // imageUrl: this.inputQuery.licenseUrl, + // certFileUrl: this.certFileUrl, + // }).then((response) => { + // if (response.code === 20000) { + // } + // console.log(this.imgList); + // }); const m = (e) => { - e.preventDefault() + e.preventDefault(); }; - document.body.style.overflow = 'hidden'; + document.body.style.overflow = "hidden"; document.addEventListener("touchmove", m, false); // 禁止页面滑动 }, @@ -1163,6 +1184,7 @@ export default { } , created() { + debugger let supId = this.$store.getters.customerId; if (supId == "110") { this.showSup = true;