Authored by htoooth

fix

... ... @@ -15,7 +15,7 @@ module.exports = class extends global.yoho.BaseModel {
this.api = new CouponApi(ctx);
this.listAsync = this.api.listAsync.bind(this);
this.listAsync = this.api.listAsync.bind(this.api);
}
acquireAsync(cid, uid) {
... ...
... ... @@ -13,6 +13,6 @@ module.exports = class extends global.yoho.BaseModel {
this.api = new Api(ctx);
this.getShareOrderListAsync = this.api.getShareOrderListAsync.bind(this);
this.getShareOrderListAsync = this.api.getShareOrderListAsync.bind(this.api);
}
};
... ...