diff --git a/pageC/merchant/details.vue b/pageC/merchant/details.vue index baabf0e..85b170a 100644 --- a/pageC/merchant/details.vue +++ b/pageC/merchant/details.vue @@ -25,7 +25,7 @@ - + @@ -42,6 +42,15 @@ export default { // console.log(res) this.info = res.data }) + }, + methods: { + previewImage(urls) { + // console.log(urls); + const imageList = [urls]; + uni.previewImage({ + urls: imageList, + }); + }, } };