From 2892e75fd062e5d5623024dc510a378fcc1eab97 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Mon, 27 May 2024 14:20:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A8=BD=E6=9F=A5=E6=9F=A5=E7=9C=8B=E8=A1=A8?= =?UTF-8?q?=E6=A0=BC=E7=B1=BB=E5=9E=8B=E7=9A=84=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trials-panel/trial-summary/audit-record/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/trial-summary/audit-record/index.vue b/src/views/trials/trials-panel/trial-summary/audit-record/index.vue index 15751644..6a003940 100644 --- a/src/views/trials/trials-panel/trial-summary/audit-record/index.vue +++ b/src/views/trials/trials-panel/trial-summary/audit-record/index.vue @@ -905,7 +905,11 @@ export default { this.$refs[url[0]].$viewer.show() } else { this.imagesList = [this.OSSclientConfig.basePath + url] - this.$refs[url].$viewer.show() + if(this.$refs[url] instanceof Array){ + this.$refs[url][0].$viewer.show() + }else{ + this.$refs[url].$viewer.show() + } } }) },