gift-shop.js
352 Bytes
let app = getApp();
Page({
data: {
authorizeVisible: false,
productList: ["", "", ""]
},
onShareAppMessage() {},
showAuth() {
this.setData({
authorizeVisible: true
})
},
onLoad(options) {},
/**
* 显示礼物详情
*/
onShowGiftDetailHandler() {
app.router.push({
path: "giftDetail"
});
}
})