diff --git a/src/views/inout/IoSupSearchOrder.vue b/src/views/inout/IoSupSearchOrder.vue index 003f6ff..f7740c8 100644 --- a/src/views/inout/IoSupSearchOrder.vue +++ b/src/views/inout/IoSupSearchOrder.vue @@ -301,6 +301,28 @@ prop="certCode" show-overflow-tooltip > + + + {{ scope.row.checkFileName }} + + + + + 检验报告 + + + + + + + + + + { + 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) => { 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; }, @@ -744,7 +833,7 @@ export default { } this.bizDetailLoading = true; this.bizQuery.orderIdFk = this.currentRow.billNo; - getResultDetailList(this.bizQuery).then((res) => { + getBizDetailList(this.bizQuery).then((res) => { this.bizDetailLoading = false; if (res.code === 20000) { this.bizDetailList = res.data.list || [];