稽查查看表格类型的图片
continuous-integration/drone/push Build is passing Details

uat_us
caiyiling 2024-05-27 14:20:46 +08:00
parent ade801d323
commit 2892e75fd0
1 changed files with 5 additions and 1 deletions

View File

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