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(); }, };