微信小程序路由wx.navigateTo传参:
wx.navigateTo({
url: "./detail/index?orderid=" + e.target.dataset.orderid + '&o2otype=' + e.target.dataset.o2otype,
success: (res) => {
console.log(res)
}
})
列表页携带订单号和类型数据到详情页
微信小程序路由wx.navigateTo传参:
wx.navigateTo({
url: "./detail/index?orderid=" + e.target.dataset.orderid + '&o2otype=' + e.target.dataset.o2otype,
success: (res) => {
console.log(res)
}
})
列表页携带订单号和类型数据到详情页