fix 支付页v4 最大支付金额

master
luoyang 5 years ago
parent e6917173ca
commit 09209d9b88

@ -42,7 +42,7 @@ $(function () {
return;
}
var char = $(this).val();
if (parseFloat(char) > 10000) {
if (parseFloat(char) >= 100000) {
char = char.slice(0, char.length - 1);
$(this).val(char);
return;
@ -167,20 +167,18 @@ $(function () {
return;
}
var pointLocation = dataCache.price.indexOf('.');
if (pointLocation >= 0 || char == '.' || char.length < 5) {
if (pointLocation >= 0 && char == '.') {
return;
}
if (pointLocation >= 0 && pointLocation <= char.length - 4) {
return;
}
if (dataCache.price == '0' && char != '.') {
dataCache.price = '';
}
if (char == '.' || char.length > 8) {
return;
}
if (pointLocation >= 0 && pointLocation <= char.length - 4) {
return;
}
if (dataCache.price == '0' && char != '.') {
dataCache.price = '';
}
dataCache.price = char;
updatePrice();
updatePoundageStatus();
}
}
function updatePoundageStatus() {

@ -34,7 +34,7 @@ $(function () {
return;
}
var char = $(this).val();
if (parseFloat(char) > 10000) {
if (parseFloat(char) >= 100000) {
char = char.slice(0, char.length - 1);
$(this).val(char);
return;
@ -159,20 +159,18 @@ $(function () {
return;
}
var pointLocation = dataCache.price.indexOf('.');
if (pointLocation >= 0 || char == '.' || char.length < 5) {
if (pointLocation >= 0 && char == '.') {
return;
}
if (pointLocation >= 0 && pointLocation <= char.length - 4) {
if (char == '.' || char.length > 8) {
return;
}
if (pointLocation >= 0 && pointLocation <= char.length - 4) {
return;
}
if (dataCache.price == '0' && char != '.') {
}
if (dataCache.price == '0' && char != '.') {
dataCache.price = '';
}
}
dataCache.price = char;
updatePrice();
updatePoundageStatus();
}
}
function updatePoundageStatus() {

Loading…
Cancel
Save