...
|
...
|
@@ -18,9 +18,9 @@ const formatPromotionTitle = (promo) => { |
|
|
|
|
|
if (promo.status === 0) {
|
|
|
if (promo.condition_unit === 1) {
|
|
|
title = `差${Math.abs(promo.condition_value)}件立享`;
|
|
|
title = `再购${Math.abs(promo.condition_value)}件`;
|
|
|
} else if (promo.condition_unit === 2) {
|
|
|
title = `差¥${transPrice(Math.abs(promo.condition_value))}立享`;
|
|
|
title = `再购¥${transPrice(Math.abs(promo.condition_value))}`;
|
|
|
}
|
|
|
} else {
|
|
|
title = '已满足';
|
...
|
...
|
|