fix(components): 更新区域选择器默认搜索配置并为手机号输入框添加长度限制

- 将 RegionsSelect 组件的 showSearch 默认值从 true 修改为 false
- 为手机号输入框添加 maxlength="11" 属性限制输入长度
This commit is contained in:
2026-01-30 16:22:56 +08:00
parent 4b04b6a670
commit 14f90c22c5
2 changed files with 2 additions and 1 deletions

View File

@@ -26,7 +26,7 @@
showSearch?: boolean;
}>(),
{
showSearch: true
showSearch: false
}
);