diff --git a/Application/Admin/View/CompanyStatementPool/editCpPool.html b/Application/Admin/View/CompanyStatementPool/editCpPool.html
index 793964a52..9bd6c27da 100644
--- a/Application/Admin/View/CompanyStatementPool/editCpPool.html
+++ b/Application/Admin/View/CompanyStatementPool/editCpPool.html
@@ -154,7 +154,7 @@
-
+
0
@@ -183,8 +183,8 @@
| {$com['reward']-0} |
-
-
+
+
0
@@ -237,7 +237,7 @@
| {$it['pay_amount']} |
-
+
0
@@ -266,8 +266,8 @@
| {$it['reward']-0} |
-
-
+
+
0
@@ -393,7 +393,7 @@
$(".refund,.withhold").keyup(function() {
var val = $(this).val();
- var reg = /^(\-|\+)?\d+(\.\d+)?$/g;
+ var reg = /^(\-|\+)?\d+(\.\d*)?$/g;
if (val == '-') {
return;
diff --git a/Application/Admin/View/CompanyStatementPool/editPcPool.html b/Application/Admin/View/CompanyStatementPool/editPcPool.html
index 794556f3b..cb3858f34 100644
--- a/Application/Admin/View/CompanyStatementPool/editPcPool.html
+++ b/Application/Admin/View/CompanyStatementPool/editPcPool.html
@@ -364,7 +364,7 @@
$(".refund,.withhold").keyup(function() {
var val = $(this).val();
- var reg = /^(\-|\+)?\d+(\.\d+)?$/g;
+ var reg = /^(\-|\+)?\d+(\.\d*)?$/g;
if (val == '-') {
return;
diff --git a/Application/Admin/View/CompanyStatementPool/editPuPool.html b/Application/Admin/View/CompanyStatementPool/editPuPool.html
index 771c82f24..7b849a44d 100644
--- a/Application/Admin/View/CompanyStatementPool/editPuPool.html
+++ b/Application/Admin/View/CompanyStatementPool/editPuPool.html
@@ -466,7 +466,7 @@
});
$(".refund,.withhold").keyup(function() {
var val = $(this).val();
- var reg = /^(\-|\+)?\d+(\.\d+)?$/g;
+ var reg = /^(\-|\+)?\d+(\.\d*)?$/g;
if (val == '-') {
return;
diff --git a/Application/Admin/View/CompanyStatementPool/editSpecialPuPool.html b/Application/Admin/View/CompanyStatementPool/editSpecialPuPool.html
index fad0ba3d0..25c01da4a 100644
--- a/Application/Admin/View/CompanyStatementPool/editSpecialPuPool.html
+++ b/Application/Admin/View/CompanyStatementPool/editSpecialPuPool.html
@@ -377,7 +377,7 @@
$(".refund,.withhold").keyup(function() {
var val = $(this).val();
- var reg = /^(\-|\+)?\d+(\.\d+)?$/g;
+ var reg = /^(\-|\+)?\d+(\.\d*)?$/g;
if (val == '-') {
return;
|