Showing
1 changed file
with
1 additions
and
1 deletions
@@ -175,7 +175,7 @@ const formatShoppingCartData = (sc) => { | @@ -175,7 +175,7 @@ const formatShoppingCartData = (sc) => { | ||
175 | gainYohoCoin: sc.gain_yoho_coin, // 获赠有货币个数 | 175 | gainYohoCoin: sc.gain_yoho_coin, // 获赠有货币个数 |
176 | goodsCount: sc.goods_count, | 176 | goodsCount: sc.goods_count, |
177 | isMultiPackage: sc.is_multi_package, | 177 | isMultiPackage: sc.is_multi_package, |
178 | - lastOrderAmount: sc.last_order_amount, // 商品金额总计 | 178 | + lastOrderAmount: (parseFloat(sc.last_order_amount)).toFixed(2), // 商品金额总计 |
179 | orderAmount: sc.order_amount, // 商品总价 | 179 | orderAmount: sc.order_amount, // 商品总价 |
180 | // package_list,[], | 180 | // package_list,[], |
181 | promotionFormula: sc.promotion_formula, | 181 | promotionFormula: sc.promotion_formula, |
-
Please register or login to post a comment