export default function({event, data}) {
wx.reLaunch({
url: 'index?id=1'
})
// test
Page({
onLoad (option) {
console.log(option.query)
}
})
}
微信小程序点击按钮刷新页面
export default function({event, data}) {
wx.reLaunch({
url: 'index?id=1'
})
// test
Page({
onLoad (option) {
console.log(option.query)
}
})
}
微信小程序点击按钮刷新页面