增加了前端密码校验
This commit is contained in:
parent
22ed9ab4d7
commit
53668b12e9
@ -82,6 +82,9 @@ const handleConfirm = async () => {
|
|||||||
if (!createData.password) {
|
if (!createData.password) {
|
||||||
throw new Error('密码不能为空')
|
throw new Error('密码不能为空')
|
||||||
}
|
}
|
||||||
|
if (!/^\d{6,}$/.test(createData.password)) {
|
||||||
|
throw new Error('密码必须为6位或以上的数字')
|
||||||
|
}
|
||||||
await userService.createUser({
|
await userService.createUser({
|
||||||
username: createData.username,
|
username: createData.username,
|
||||||
password: createData.password,
|
password: createData.password,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user