修复业务模块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
@@ -171,7 +171,7 @@ export const nonNegativeRule = label => ({
});
export const phoneRule = label => ({
pattern: /^(1\d{10}|0\d{2,3}-?\d{7,8})$/,
pattern: /^1[3-9]\d{9}$/,
message: `${label}格式不正确`,
trigger: 'blur',
});