You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
363 B

Page({
data: {
},
onShow: function() {
},
onLoad: function() {
this.getCoupon()
},
getCoupon: function() {
wx.request({
url: `${getApp().globalData.API_URL}/coupons`,
data: {},
method: 'GET',
success: function(res){
},
fail: function() {
},
complete: function() {
}
})
}
})