在预览之前调用了一个获取原图的方法,点击多图预览无论第几张显示的都是第一张图片,不调用获取原图函数就正常....
7***@qq.com
- 发布:2018-12-26 16:26
- 更新:2019-07-19 15:10
- 阅读:6561
我刚刚解决了这个问题
你多图预览的时候肯定是遍历图片链接的列表以展示在视图层中,这样的话你可以给每一个图片动态绑定id属性,这样在调用uni.previewImage()方法时候id会返回在e.currentTarget.id,再把这个值赋给current就OK了
视图层
<view class="imgbox" v-for="(item,index) in imgList" :key='item.key' >
<image :src="item" @tap="preview" :id="index"></image>
</view>
方法
preview(res){
let myindex = res.currentTarget.id;
uni.previewImage({
urls:this.imgList,
current:myindex
})
}