diff --git a/src/views/inout/DialogCheck.vue b/src/views/inout/DialogCheck.vue index 9794496..fe0ccd8 100644 --- a/src/views/inout/DialogCheck.vue +++ b/src/views/inout/DialogCheck.vue @@ -173,6 +173,61 @@ + + + + + + 冷链报告上传: + + + + + + + {{ choiceFile1 }} + + 只能上传 jpg,png 文件,且不超过 10 MB + + + + + + + 冷链报告预览: + + + + + 冷链报告预览 + + + + + + + + + + @@ -183,7 +238,6 @@ import draggable from "vuedraggable"; import store from "@/store"; import {updateBizById, updateById} from '@/api/inout/orderDetailBiz' -import {updateOrderDetailBiz} from '@/api/inout/order' import {previewImage} from '@/api/purchase/supCompany' import ElImageViewer from "element-ui/packages/image/src/image-viewer"; @@ -209,7 +263,9 @@ export default { data() { return { imgList: [], + imgListCold:[], imgViewerVisible: false, + imgViewerVisibleCold:false, BASE_URL: process.env.VUE_APP_BASE_API, code: "", formData: { @@ -235,6 +291,7 @@ export default { fileList: [], headers: {}, choiceFile: "选取文件", + choiceFile1: "选取文件", }; }, @@ -303,6 +360,11 @@ export default { this.inputQuery.checkFileName = null; console.log(file, fileList); }, + uploadHandleRemove1(file, fileList) { + this.inputQuery.coldFilePath = null; + this.inputQuery.checkColdFileName = null; + console.log(file, fileList); + }, uploadHandlePreview(file) { console.log(file); console.log(this.fileList); @@ -337,6 +399,33 @@ export default { } return isLt; }, + uploadOnchange1(file, fileList) { + this.inputQuery.checkColdFileName = file.name; + let fileName = file.name; + let uid = file.uid + let pos = fileName.lastIndexOf("."); + let lastName = fileName.substring(pos, fileName.length); + if (lastName.toLowerCase() !== ".jpg" && lastName.toLowerCase() !== ".png" && lastName.toLowerCase() !== ".doc" && lastName.toLowerCase() !== ".pdf") { + this.$message.error("上传文件只能是 jpg,png,doc,pdf 格式"); + for (let i = 0; i < fileList.length; i++) {//从list删除 + if (fileList[i].uid === uid) { + fileList.splice(i, 1) + } + } + return; + } + // 限制上传文件的大小 + const isLt = file.size / 1024 / 1024 / 30 <= 1; + if (!isLt) { + this.$message.error("上传文件大小不能超过 30MB"); + for (let i = 0; i < fileList.length; i++) { + if (fileList[i].uid === uid) { + fileList.splice(i, 1) + } + } + } + return isLt; + }, uploadHandleSuccess(response, file, fileList) { if (response.code === 20000) { this.inputQuery.filePath = response.data.name; @@ -345,6 +434,14 @@ export default { this.$message.error("文件上传失败:" + response.message); } }, + uploadHandleSuccess1(response, file, fileList) { + if (response.code === 20000) { + this.inputQuery.coldFilePath = response.data.name; + // this.onSubmit(); + } else { + this.$message.error("文件上传失败:" + response.message); + } + }, uploadHandleError() { }, @@ -374,6 +471,24 @@ export default { document.addEventListener("touchmove", m, false); // 禁止页面滑动 }, + showImgViewerCold(row){ + this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="; + this.imgList = []; + previewImage({imageUrl: this.inputQuery.coldFilePath, certFileUrl: this.certFileUrl}).then(response => { + if (response.code === 20000) { + this.imgList = response.data; + } + console.log(this.imgList) + this.imgViewerVisible = true; + }); + const m = (e) => { + e.preventDefault() + }; + document.body.style.overflow = 'hidden'; + document.addEventListener("touchmove", m, false); // 禁止页面滑动 + }, + + closeImgViewer() { this.imgViewerVisible = false; const m = (e) => { @@ -383,6 +498,12 @@ export default { document.removeEventListener("touchmove", m, true); }, + closeImgViewerCold(){ + this.imgViewerVisibleCold = false; + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'auto'; + document.removeEventListener("touchmove", m, true); + }, }, filters: {}, @@ -411,6 +532,12 @@ export default { } else { this.choiceFile = "选取检验报告"; } + + if (this.inputQuery.coldFilePath != null) { + this.choiceFile1 = "更换冷链报告"; + } else { + this.choiceFile1 = "选取冷链报告"; + } }, }; diff --git a/src/views/inout/IoDeliveryAuditOrder.vue b/src/views/inout/IoDeliveryAuditOrder.vue index 4677d48..9d03ebd 100644 --- a/src/views/inout/IoDeliveryAuditOrder.vue +++ b/src/views/inout/IoDeliveryAuditOrder.vue @@ -319,13 +319,26 @@ {{ scope.row.checkFileName }} + + + + {{ scope.row.checkColdFileName }} + + + + 预览 + >检验报告预览 + + + 冷链报告预览 @@ -341,6 +363,9 @@ + + + { + if (response.code === 20000) { + this.imgListCold=response.data; + } + console.log(this.imgListCold) + this.imgViewerVisibleCold = true; + }); + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'hidden'; + document.addEventListener("touchmove", m, false); // 禁止页面滑动 + }, + closeImgViewer(){ this.imgViewerVisible = false; const m = (e) => { e.preventDefault() }; @@ -770,6 +813,13 @@ export default { document.removeEventListener("touchmove", m, true); }, + closeImgViewerCold(){ + this.imgViewerVisibleCold = false; + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'auto'; + document.removeEventListener("touchmove", m, true); + }, + invChange() { this.filterQuery.action = null; this.busTypes = []; diff --git a/src/views/inout/IoDeliverySearchOrder.vue b/src/views/inout/IoDeliverySearchOrder.vue index 8f3d3b0..f22d6dd 100644 --- a/src/views/inout/IoDeliverySearchOrder.vue +++ b/src/views/inout/IoDeliverySearchOrder.vue @@ -294,47 +294,95 @@ + + + + + + {{ scope.row.checkFileName }} + + + + + + {{ scope.row.checkColdFileName }} + + + + + + + 预览 + + + + + + + + + + + { + if (response.code === 20000) { + this.imgList=response.data; + } + console.log(this.imgList) + this.imgViewerVisible = true; + }); + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'hidden'; + document.addEventListener("touchmove", m, false); // 禁止页面滑动 + }, + + + showImgViewerCold(row){ + this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="; + console.log(this.certFileUrl+"========"); + this.imgListCold=[]; + previewImage({imageUrl:row.coldFilePath,certFileUrl:this.certFileUrl}).then(response => { + if (response.code === 20000) { + this.imgListCold=response.data; + } + console.log(this.imgListCold) + this.imgViewerVisibleCold = true; + }); + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'hidden'; + document.addEventListener("touchmove", m, false); // 禁止页面滑动 + }, + + closeImgViewer(){ + this.imgViewerVisible = false; + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'auto'; + document.removeEventListener("touchmove", m, true); + }, + + closeImgViewerCold(){ + this.imgViewerVisibleCold = false; + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'auto'; + document.removeEventListener("touchmove", m, true); + }, + + + upload(row){ + this.currentManufacturer = row; + this.Upinvoice = true; + }, + + freshen(){ + this.Upinvoice = false; + this.getOrderDetails(); + }, + + closeCheckDialog(){ + this.Upinvoice = false; + this.getOrderDetails(); + }, + + + hideSearch() { this.showSearch = !this.showSearch; }, diff --git a/src/views/inout/IoSupAduitOrder.vue b/src/views/inout/IoSupAduitOrder.vue index e1d7fc8..08746bc 100644 --- a/src/views/inout/IoSupAduitOrder.vue +++ b/src/views/inout/IoSupAduitOrder.vue @@ -263,20 +263,32 @@ {{ scope.row.checkFileName }} + + + + {{ scope.row.checkColdFileName }} + + + 检验报告 + >预览 @@ -372,10 +384,11 @@ + + { + if (response.code === 20000) { + this.imgListCold=response.data; + } + console.log(this.imgListCold) + this.imgViewerVisibleCold = true; + }); + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'hidden'; + document.addEventListener("touchmove", m, false); // 禁止页面滑动 + }, + closeImgViewer(){ this.imgViewerVisible = false; const m = (e) => { e.preventDefault() }; document.body.style.overflow = 'auto'; document.removeEventListener("touchmove", m, true); }, + closeImgViewerCold(){ + this.imgViewerVisibleCold = false; + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'auto'; + document.removeEventListener("touchmove", m, true); + }, @@ -651,6 +689,7 @@ export default { this.Upinvoice = false; this.getOrderDetails(); }, + handleSelectionChange(val) { this.currentRow.billNo=val.billNo; this.getOrderDetails(); diff --git a/src/views/inout/IoSupSearchOrder.vue b/src/views/inout/IoSupSearchOrder.vue index f7740c8..a47c6af 100644 --- a/src/views/inout/IoSupSearchOrder.vue +++ b/src/views/inout/IoSupSearchOrder.vue @@ -304,13 +304,26 @@ {{ scope.row.checkFileName }} + + + + {{ scope.row.checkColdFileName }} + + + + 检验报告 + >预览 @@ -416,9 +429,12 @@ + + + { + if (response.code === 20000) { + this.imgListCold=response.data; + } + console.log(this.imgListCold) + this.imgViewerVisibleCold = true; + }); + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'hidden'; + document.addEventListener("touchmove", m, false); // 禁止页面滑动 + }, + closeImgViewer(){ this.imgViewerVisible = false; const m = (e) => { e.preventDefault() }; @@ -681,21 +717,31 @@ export default { document.removeEventListener("touchmove", m, true); }, + closeImgViewerCold(){ + this.imgViewerVisibleCold = false; + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'auto'; + document.removeEventListener("touchmove", m, true); + }, + upload(row){ this.currentManufacturer = row; this.Upinvoice = true; }, + closeCheckDialog(){ this.Upinvoice = false; this.getOrderDetails(); }, + freshen(){ this.Upinvoice = false; this.getOrderDetails(); }, + hideSearch() { this.showSearch = !this.showSearch; }, diff --git a/src/views/inout/IoSupSecAuditOrder.vue b/src/views/inout/IoSupSecAuditOrder.vue index 7d8c2e1..019f53f 100644 --- a/src/views/inout/IoSupSecAuditOrder.vue +++ b/src/views/inout/IoSupSecAuditOrder.vue @@ -288,7 +288,7 @@ @@ -296,6 +296,18 @@ + + + {{ scope.row.checkColdFileName }} + + + + @@ -303,9 +315,11 @@ type="text" size="small" @click.native.stop="upload(scope.row)" - >检验报告 + >预览 + + @@ -402,9 +416,12 @@ + + + { + if (response.code === 20000) { + this.imgListCold=response.data; + } + console.log(this.imgListCold) + this.imgViewerVisibleCold = true; + }); + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'hidden'; + document.addEventListener("touchmove", m, false); // 禁止页面滑动 + }, + closeImgViewer() { this.imgViewerVisible = false; const m = (e) => { @@ -669,6 +704,14 @@ export default { document.body.style.overflow = 'auto'; document.removeEventListener("touchmove", m, true); }, + + closeImgViewerCold(){ + this.imgViewerVisibleCold = false; + const m = (e) => { e.preventDefault() }; + document.body.style.overflow = 'auto'; + document.removeEventListener("touchmove", m, true); + }, + upload(row) { this.currentManufacturer = row; this.Upinvoice = true; @@ -976,6 +1019,11 @@ export default { this.getOrderDetails(); }, + freshenCold(){ + this.coldUpinvoice = false; + this.getOrderDetails(); + }, + //验收结束 closeAcceptDialog() { this.acceptOrderVisible = false;