|
@@ -32,7 +32,7 @@
|
|
|
<view class="label">采集图片</view>
|
|
|
<view class="images">
|
|
|
<view class="it" v-for="(it, idx) in item.pgOrderProductDetails" :key="idx">
|
|
|
- <image :src="it.fileUrl" mode="aspectFill"></image>
|
|
|
+ <image :src="it.fileUrl" mode="aspectFill" @tap="prevImg(it.fileUrl)"></image>
|
|
|
<view class="text">{{ it.fileName }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -71,6 +71,14 @@ export default {
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
+ // 预览图片
|
|
|
+ prevImg(url) {
|
|
|
+ uni.previewImage({
|
|
|
+ current: url,
|
|
|
+ urls: [url]
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
refresherrefresh(e) {
|
|
|
this.refresherTriggered = true
|
|
|
this.getList()
|