Commit d6067dc7 by 朱继来

调整金额区间判断

parent 47f6362a
Showing with 2 additions and 2 deletions
......@@ -899,7 +899,7 @@
if (orderAmount < min_price) {
$('.order_all_pay').attr('checked', true);
$('.order_advance_pay').parent('label').hide();
} else if (orderAmount >= min_price && orderAmount <= max_price) {
} else if (orderAmount >= min_price && orderAmount < max_price) {
// 判断付款类型
if (orderPayType == 1) {
$('.order_all_pay').attr('checked', true);
......@@ -916,7 +916,7 @@
}
if (currency == 1) { // 人民币
checkPayType(order_amount, order_pay_type, 10000, 49999);
checkPayType(order_amount, order_pay_type, 10000, 50000);
} else {
checkPayType(order_amount, order_pay_type, 1500, 7800);
}
......
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