Merge branch 'feature/couponStatus' into release/6.1
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -100,7 +100,7 @@ exports.getCouponStatus = (params) => { | @@ -100,7 +100,7 @@ exports.getCouponStatus = (params) => { | ||
100 | 100 | ||
101 | if ([2, 3].indexOf(status) > -1) { | 101 | if ([2, 3].indexOf(status) > -1) { |
102 | const cou = { | 102 | const cou = { |
103 | - id: crypto.encryption('yoho9646abcdefgh', item.couponId) // 加密优惠券号 | 103 | + id: crypto.encryption('yoho9646abcdefgh', String(item.couponId)) // 加密优惠券号 |
104 | }; | 104 | }; |
105 | 105 | ||
106 | if (status === 2) { | 106 | if (status === 2) { |
-
Please register or login to post a comment