// 預覽圖片
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
})
},