主要使用uni.previewImage
javascript
//html
<view class="box-card" v-for="(item,index) in DataList" :key="index">
<view>图片:</view>
<image :src="item.Path" @tap.stop="clickImg(item.Path)"></image>
</view>>
//data
DataList: [],
//js
onShow () {
orderList().then(res => {
this.DataList= res.data
})
},
// 单图片预览
clickImg (imgUrl) {
// console.log(imgUrl, 'imgUrl');
// const imgUrl = this.Path; //图片列表,this.imgList是一个图片链接的数组。
uni.previewImage({
loop: true,
urls: [imgUrl], //可以展示imgUrl 列表中所有的图片
// current: index //首先当前index对应图片,左右可以切换其他序号的图片
});
},
上一篇文章,