Authored by yyq

Merge branch 'feature/shopCoupon' into release/6.0.2

... ... @@ -142,7 +142,7 @@ function syncCouponStatus() {
if (couponObj.hasOwnProperty(i)) {
coup = asyncObj[i];
if (coup) {
if (coup && (coup.status === 1 || coup.status === 3)) {
couponObj[i].status = coup.status;
coup.status === 3 ? setPicked(couponObj[i]) : false;
} else {
... ...