修复业务模块bug

This commit is contained in:
2026-08-13 14:07:04 +08:00
parent 6554ad80dd
commit f62e36e846
15 changed files with 941 additions and 186 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export function isEmail(s) {
* @param {*} s
*/
export function isMobile(s) {
return /^1[0-9]{10}$/.test(s);
return /^1[3-9]\d{9}$/.test(String(s || '').trim());
}
/**