Authored by 孙凯

店铺重构】店铺领取,已领过券的用户点击领取,登录成功后,优惠券仍然是待领取状态。 review by 红魔

... ... @@ -904,7 +904,6 @@ export function getCouponSuccess(list) {
export function getCouponFailure(error) {
return {
type: ADD_COUPON_FAILURE,
payload: error,
}
}
... ... @@ -935,6 +934,10 @@ export function getCoupon(couponId) {
success();
})
.catch(error => {
if (error.code == 401) {
success();
}
dispatch(getCouponFailure(error));
});
}
... ...