Commit 7f26655f by weiguanying

结算文件手工录入查询界面

parent d34cdf27
export const Pattern = {
"frmdat": [
{ "required": true, "message": "必输项", "type": "string", "trigger": "change" }
],
"todat": [
{ "required": true, "message": "必输项", "type": "string", "trigger": "change" }
],
"sta": [
{ "required": true, "message": "必输项", "type": "string", "trigger": "change" }
],
"accdat": [
{ "required": true, "message": "必输项", "type": "string", "trigger": "blur" },
],
"relcur": [
{ "required": true, "message": "必输项", "type": "string", "trigger": "change" }
],
"frmamt": [
{ required: true, message: "必输项" },
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"toamt": [
{ required: true, message: "必输项" },
{ pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
]
}
export default class DblkpmModel {
constructor() {
this.data = {
dblkpmVo:{
frmdat:"", // : .kpmp.frmdat
todat:"", // : .kpmp.todat
actbic:"", // : .kpmp.actbic
cur:"", // : .kpmp.cur
frmamt:"", // : .kpmp.frmamt
toamt:"", // : .kpmp.toamt
sta:"", // : .kpmp.sta
accdat:"", // : .kpmp.accdat
accdatto:"", // : .kpmp.accdatto
frmvludat:"", // : .kpmp.frmvludat
tovludat:"", // : .kpmp.tovludat
pageSize:PageSize,
pageNumber:1,
total:0
},
}
}
}
\ No newline at end of file
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