From ff78c078c58a14d6781fb1d668017ff208133dc5 Mon Sep 17 00:00:00 2001 From: anthonywj Date: Thu, 11 May 2023 15:59:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E5=AD=98=E6=8C=89=E8=B4=A7=E4=BD=8D?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E7=BB=93=E4=BD=99=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/IoCheckAuditOrder.vue | 2 +- src/views/inventory/InvPreProducts.vue | 6 +++++- src/views/inventory/InvProducts.vue | 12 +++++++++--- src/views/inventory/InvSupPreInProducts.vue | 18 ++++++++++++------ 4 files changed, 27 insertions(+), 11 deletions(-) diff --git a/src/views/inout/IoCheckAuditOrder.vue b/src/views/inout/IoCheckAuditOrder.vue index e142471b..03546756 100644 --- a/src/views/inout/IoCheckAuditOrder.vue +++ b/src/views/inout/IoCheckAuditOrder.vue @@ -698,7 +698,7 @@ export default { this.showSearch = !this.showSearch; }, showImgViewer(row) { - this.certFileUrl = this.IMAGE_URL + "/mapi" + "/udiwms/image/register/file/getImage?type=image2&name="; + this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="; this.imgList = []; previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => { if (response.code === 20000) { diff --git a/src/views/inventory/InvPreProducts.vue b/src/views/inventory/InvPreProducts.vue index 2524990e..b59b5a2d 100644 --- a/src/views/inventory/InvPreProducts.vue +++ b/src/views/inventory/InvPreProducts.vue @@ -160,7 +160,11 @@ - + + + - + - + + + - + - + + + { this.invList = response.data || []; - for(var i=0;i< this.invList.length;i++){ - if(this.invList[i].advanceType == 2){ - this.filterQuery.invCode=this.invList[i].code; + for (var i = 0; i < this.invList.length; i++) { + if (this.invList[i].advanceType == 2) { + this.filterQuery.invCode = this.invList[i].code; } } this.getList(); @@ -449,7 +455,7 @@ export default { } this.findMethod(); this.getInvList(); - // this.getList(); + // this.getList(); }, };