zl程序教程

您现在的位置是:首页 >  其它

当前栏目

图片预览

图片 预览
2023-09-11 14:17:23 时间
// 预览图片
yulanFn: function (e) {
var arr = [];
var that = this;
//获取当前图片的下表
var indexw = e.currentTarget.dataset.indexw;
var index = e.currentTarget.dataset.index;

//数据源

var pictures = this.data.banner[indexw].shoppingCarouselList;
var picture = "https://didu86.com/Clothes-manager-web/" + this.data.banner[indexw].shoppingCarouselList[index].url;
for (var i = 0; i < pictures.length; i++) {
var pic = "https://didu86.com/Clothes-manager-web/" + pictures[i].url
arr.push(pic);
};
// console.log(picture)
// console.log(arr);
wx.previewImage({
// // // //当前显示下表
current: picture,
// // // //数据源
urls: arr
})
},