fix: 修复验证码不校验手机号输入的bug & 将验证码改为6位

This commit is contained in:
lzh
2025-12-19 11:45:58 +08:00
parent ececf4cdae
commit a636567366
3 changed files with 8 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ const accessStore = useAccessStore();
const tenantEnable = isTenantEnable();
const loading = ref(false);
const CODE_LENGTH = 4;
const CODE_LENGTH = 6;
const loginRef = ref();

View File

@@ -24,7 +24,7 @@ const router = useRouter();
const tenantEnable = isTenantEnable();
const loading = ref(false);
const CODE_LENGTH = 4;
const CODE_LENGTH = 6;
const forgetPasswordRef = ref();
/** 获取租户列表,并默认选中 */