fix: 优化应用管理默认密码校验规则

This commit is contained in:
xieyonghong 2023-04-03 20:58:40 +08:00
parent ba3e5d0194
commit 132aa4c920
1 changed files with 4 additions and 0 deletions

View File

@ -1331,6 +1331,10 @@
required: true,
message: '请输入默认密码',
},
{
min: 8,
message: '最少输入8个字符',
},
{
max: 64,
message: '最多可输入64个字符',