Commit 1ab16540 by 朱继来

注释定金限制

parent 4936e25e
Showing with 20 additions and 20 deletions
......@@ -964,26 +964,26 @@
})
// 定金调整
$('.advance').on('blur',function(){
if($(this).val()<($('.total').html()*0.2)){
$(this).val(parseFloat($('.total').html()*0.2).toFixed(2));
layer.tips('预付款金额不能小于'+$('.total').html()*0.2,$(this));
}
if($(this).val()>($('.total').html()*0.5)){
$(this).val(parseFloat($('.total').html()*0.5).toFixed(2));
layer.tips('预付款金额不能大于'+$('.total').html()*0.5,$(this));
}
// 价格调整后,付款类型显示或隐藏
// var orderPayType = $('input[name=order_pay_type]').val();
// var total = $('input[name=order_amount]').val();
// if (currency == 1) { // 人民币
// checkPayType(total, orderPayType, 10000, 49999);
// } else {
// checkPayType(total, orderPayType, 1500, 7800);
// }
})
// $('.advance').on('blur',function(){
// if($(this).val()<($('.total').html()*0.2)){
// $(this).val(parseFloat($('.total').html()*0.2).toFixed(2));
// layer.tips('预付款金额不能小于'+$('.total').html()*0.2,$(this));
// }
// if($(this).val()>($('.total').html()*0.5)){
// $(this).val(parseFloat($('.total').html()*0.5).toFixed(2));
// layer.tips('预付款金额不能大于'+$('.total').html()*0.5,$(this));
// }
// // 价格调整后,付款类型显示或隐藏
// // var orderPayType = $('input[name=order_pay_type]').val();
// // var total = $('input[name=order_amount]').val();
// // if (currency == 1) { // 人民币
// // checkPayType(total, orderPayType, 10000, 49999);
// // } else {
// // checkPayType(total, orderPayType, 1500, 7800);
// // }
// })
// 订单审核---通过or不通过
$('input[name="order_status"]').parent().on('click', function(){
......
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