Commit 3a210937 by WuBing

LETDRV单据页面提示问题修改

parent 6bc36c7c
......@@ -20,9 +20,9 @@ export default {
{ max: 3, message: "长度不能超过3" }
],
"ledgrp.cbs.nom1.amt": [
{ type: "number", required: false, message: "必输项" },
{ type: "string", required: false, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" },
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过2位" }
],
"bedgrp.apl.pts.ref": [
......@@ -34,9 +34,9 @@ export default {
{ max: 3, message: "长度不能超过3" }
],
"ledgrp.cbs.opn1.amt": [
{ type: "number", required: false, message: "必输项" },
{ type: "string", required: false, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" },
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过2位" }
],
"bedgrp.apl.pts.nam": [
......@@ -105,7 +105,7 @@ export default {
"bedgrp.cbs.max.amt": [
{ type: "string", required: false, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" },
{ pattern: /(^-?\d+$)|(^\.\d{1,3}$)|(^-?\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{ pattern: /(^-?\d+$)|(^\.\d{1,3}$)|(^-?\d+\.\d{1,3}$)/, message: "小数位不能超过2位" }
],
"bedgrp.prb.pts.ref": [
{ type: "string", required: false, message: "必输项" },
......@@ -115,7 +115,7 @@ export default {
"bedgrp.cbs.max2.amt": [
{ required: false, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" },
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过2位" }
],
"betp.prbp.ptsget.sdamod.dadsnd": [
{ type: "string", required: false, message: "必输项" },
......
......@@ -54,12 +54,12 @@
<c-col :span="10">
<el-form-item label="" prop="ledgrp.cbs.nom1.amt" label-width="5px">
<c-input
<c-input-currency
v-model="model.ledgrp.cbs.nom1.amt"
style="width: 100%"
placeholder="请输入金额"
disabled
></c-input>
></c-input-currency>
</el-form-item>
</c-col>
......@@ -89,12 +89,12 @@
<c-col :span="10">
<el-form-item label="" prop="ledgrp.cbs.opn1.amt" label-width="5px">
<c-input
<c-input-currency
v-model="model.ledgrp.cbs.opn1.amt"
style="width: 100%"
placeholder="请输入金额"
disabled
></c-input>
></c-input-currency>
</el-form-item>
</c-col>
......@@ -293,10 +293,10 @@
</c-col>
<c-col :span="12">
<el-form-item label="" label-width="5px" prop="bedgrp.cbs.max.amt">
<c-input
<c-input-currency
v-model="model.bedgrp.cbs.max.amt"
placeholder="请输入金额"
></c-input>
></c-input-currency>
</el-form-item>
</c-col>
</c-col>
......@@ -314,11 +314,11 @@
</c-col>
<c-col :span="12">
<el-form-item label="" label-width="5px" prop="bedgrp.cbs.max2.amt">
<c-input
<c-input-currency
v-model="model.bedgrp.cbs.max2.amt"
placeholder="请输入金额"
disabled
></c-input>
></c-input-currency>
</el-form-item>
</c-col>
</c-col>
......
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