Commit ed9583fc by hulei

增加保证金PanelEvent

parent 24734636
......@@ -115,6 +115,9 @@ export default {
if (name === "limitbody") {
rulePath = "liaall.limmod.limitbody"
}
if (name === "ccvpan") {
rulePath = "liaall.liaccv.ccvpan"
}
if (!!rulePath) {
this.executeRule(rulePath).then(res => {
if (res.respCode == SUCCESS) {
......
......@@ -622,7 +622,8 @@ export default {
],
"liaall.liaccv.cshpct": [
{ type: "string", required: false, message: "必输项", trigger: "blur" },
{ max: 5, message: "长度不能超过5", trigger: "blur" }
{ max: 8, message: "整数位不能超过5位"},
{ pattern: /(^\d{1,5}$)|(^\d{0,5}\.\d{1,2}$)/, message:"整数位不能超过5位,小数位不能超过2位",trigger:"blur"}
],
"liaall.liaccv.newresamt": [
{ required: false, message: "必输项", trigger: "blur" },
......@@ -631,7 +632,8 @@ export default {
],
"liaall.liaccv.relcshpct": [
{ type: "string", required: false, message: "必输项" },
{ max: 5, message: "长度不能超过5" }
{ max: 8, message: "整数位不能超过5位"},
{ pattern: /(^\d{1,5}$)|(^\d{0,5}\.\d{1,2}$)/, message:"整数位不能超过5位,小数位不能超过2位",trigger:"blur"}
],
"liaall.liaccv.pctresamt": [
......
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 to comment