Showing
1 changed file
with
2 additions
and
2 deletions
@@ -18,9 +18,9 @@ const formatPromotionTitle = (promo) => { | @@ -18,9 +18,9 @@ const formatPromotionTitle = (promo) => { | ||
18 | 18 | ||
19 | if (promo.status === 0) { | 19 | if (promo.status === 0) { |
20 | if (promo.condition_unit === 1) { | 20 | if (promo.condition_unit === 1) { |
21 | - title = `差${Math.abs(promo.condition_value)}件立享`; | 21 | + title = `再购${Math.abs(promo.condition_value)}件`; |
22 | } else if (promo.condition_unit === 2) { | 22 | } else if (promo.condition_unit === 2) { |
23 | - title = `差¥${transPrice(Math.abs(promo.condition_value))}立享`; | 23 | + title = `再购¥${transPrice(Math.abs(promo.condition_value))}`; |
24 | } | 24 | } |
25 | } else { | 25 | } else { |
26 | title = '已满足'; | 26 | title = '已满足'; |
-
Please register or login to post a comment