...
|
...
|
@@ -357,7 +357,7 @@ function handleCoupons(params) { |
|
|
}
|
|
|
|
|
|
if (validCouponCount && couponData.coupon_count) {
|
|
|
showText = `可用${validCouponCount}张 已推荐${couponData.coupon_count}张`;
|
|
|
showText = `${validCouponCount}张可用 已推荐${couponData.coupon_count}张`;
|
|
|
priceText = `-¥${couponData.coupon_amount_str}`;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -389,8 +389,10 @@ const couponProcess = conponData => { |
|
|
let unusableCouponNumStr = '';
|
|
|
|
|
|
_.forEach(unusableCouponsList, listItem => {
|
|
|
if (listItem.coupons) {
|
|
|
if (listItem.coupons && listItem.coupons.length) {
|
|
|
unusableCouponNum += listItem.coupons.length;
|
|
|
} else {
|
|
|
listItem.name = '';
|
|
|
}
|
|
|
});
|
|
|
|
...
|
...
|
|