From 4a8b12ec19d680fa5edd36d07fe5eced7e05ecbb Mon Sep 17 00:00:00 2001 From: zhouhao <787329763@qq.com> Date: Mon, 10 Jan 2022 16:08:40 +0800 Subject: [PATCH] 修改结果查询 --- src/views/main/addBankcard.vue | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/main/addBankcard.vue b/src/views/main/addBankcard.vue index da68f11..ccddbae 100644 --- a/src/views/main/addBankcard.vue +++ b/src/views/main/addBankcard.vue @@ -261,10 +261,13 @@ objUrl = `${window.location.origin}` } this.contractUrl=[] - this.contractUrl =this.dataForm.contractUrl.map(element => { + this.$api.getContInfo({bizId: this.bizId, bizType: this.bizType}).then(res=>{ + this.contractUrl =res.body.contractUrl.map(element => { return element = objUrl+element }) - ImagePreview(this.dataForm.contractUrl); + ImagePreview(this.contractUrl); + }) + }, //图片click imgClick: function () { -- Gitblit v1.8.0