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