zl程序教程

您现在的位置是:首页 >  工具

当前栏目

微信小程序 功能函数 点击传参和页面

微信程序 函数 功能 页面 点击 传参
2023-09-11 14:17:23 时间
// 商品详情页跳转函数
detailInto: function (e) {
// console.log()
var change = e.currentTarget.dataset.id;
wx.navigateTo({
url: '../detail/detail?id=' + change
})
},
//接收的页面
onLoad: function (opt) {
var selectnum= this.data.selectnum;
selectnum.sq = opt.key;

this.setData({
selectnum: selectnum,
shoplist: this.data.shops
});