Showing
1 changed file
with
1 additions
and
1 deletions
@@ -18,7 +18,7 @@ const formatPromotionTitle = (promo) => { | @@ -18,7 +18,7 @@ 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 = `差${transPrice(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 | } |
-
Please register or login to post a comment