Commit d2f1b0fa by 朱继来

单价四位数

parent 26a16eb0
Showing with 1 additions and 1 deletions
......@@ -1396,7 +1396,7 @@
$('.order-change-table').find('tbody tr').each(function(){
var price = $(this).find('.price').val();
var discount_price = parseFloat(price * discount).toFixed(2);
var discount_price = parseFloat(price * discount).toFixed(4);
$(this).find('.price').val(discount_price);
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment