'二次密码校验'
This commit is contained in:
@@ -73,7 +73,8 @@ const formRules = computed(() => {
|
|||||||
confirm_password: [
|
confirm_password: [
|
||||||
{
|
{
|
||||||
validator: (_rule: any, value: string, cb: any) => {
|
validator: (_rule: any, value: string, cb: any) => {
|
||||||
if (value && value !== form.password) cb(new Error('两次密码不一致'));
|
if (form.password && !value) cb(new Error('请确认密码'));
|
||||||
|
else if (value && value !== form.password) cb(new Error('两次密码不一致'));
|
||||||
else cb();
|
else cb();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user