feat: fix

This commit is contained in:
2025-11-30 22:59:30 +08:00
parent 15d5b05587
commit 8396b5b02a
13 changed files with 157 additions and 106 deletions

View File

@@ -117,4 +117,8 @@ export function genNTRPRequirementText(min, max) {
return `${formatNtrpDisplay(max)} 以上`;
}
return "-";
}
}
export function isPhoneNumber(str) {
return /^1[3-9]\d{9}$/.test(str);
}