系统配置:把销售协议的字段长度限制改为400字符以内

This commit is contained in:
季圣华 2023-09-20 20:44:43 +08:00
parent 0935ac5c25
commit a458276db7

View File

@ -197,7 +197,7 @@
},
saleAgreement:{
rules: [
{ min: 2, max: 200, message: '长度在 2 200 个字符', trigger: 'blur' }
{ min: 2, max: 400, message: '长度在 2 400 个字符', trigger: 'blur' }
]
}
}