修复银行账户只能输入10位的问题

This commit is contained in:
lingling 2025-02-18 22:20:51 +08:00
parent 19f8af71bb
commit 3dbb993756
1 changed files with 3 additions and 3 deletions

View File

@ -869,10 +869,10 @@ const Ce = L(
a.length - 1
)),
void (
o.value.account.length > 10 &&
(j(l("只能填写10位数")),
o.value.account.length > 20 &&
(j(l("只能填写20位数")),
(o.value.account =
o.value.account.slice(0, 10)))
o.value.account.slice(0, 20)))
)
);
var a;