Commit 5e56c7f4 authored by jiangjiantao's avatar jiangjiantao

bugfixed

parent ed724f5a
......@@ -472,7 +472,7 @@ Page({
* 提货
*/
onHomePickUpGoodsClicked() {
let context = this;
let context = this;
my.ix.sendBuddyMessage({
target: getApp().globalData.frontScreenAppId,
data: {
......@@ -926,6 +926,25 @@ Page({
},
//提货关闭
pickGoodsClose(e) {
let context = this;
my.ix.sendBuddyMessage({
target: getApp().globalData.frontScreenAppId,
data: {
action: ACTION_PICK_UP_GOODS,
data: 0
},
success: (sres) => {
context.setData({ pickGoodsState: 0 })
console.log("关闭提货通知前屏 成功 ===》" + JSON.stringify(sres));
},
fail: (fres) => {
console.log("关闭提货通知前屏 失败 ===》 " + JSON.stringify(fres));
}
})
},
//兑换券界面关闭
convertCouponClose(e) {
this.setData({ convertCouponState: 0 })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment