From 14f90c22c57e8e4b8a02f48d07945fb1a39b6360 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 30 Jan 2026 16:22:56 +0800 Subject: [PATCH] =?UTF-8?q?fix(components):=20=E6=9B=B4=E6=96=B0=E5=8C=BA?= =?UTF-8?q?=E5=9F=9F=E9=80=89=E6=8B=A9=E5=99=A8=E9=BB=98=E8=AE=A4=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E9=85=8D=E7=BD=AE=E5=B9=B6=E4=B8=BA=E6=89=8B=E6=9C=BA?= =?UTF-8?q?=E5=8F=B7=E8=BE=93=E5=85=A5=E6=A1=86=E6=B7=BB=E5=8A=A0=E9=95=BF?= =?UTF-8?q?=E5=BA=A6=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 RegionsSelect 组件的 showSearch 默认值从 true 修改为 false - 为手机号输入框添加 maxlength="11" 属性限制输入长度 --- src/components/RegionsSelect/index.vue | 2 +- src/views/shop/shopStore/components/shopStoreEdit.vue | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/RegionsSelect/index.vue b/src/components/RegionsSelect/index.vue index 47fe28e..3e865bb 100644 --- a/src/components/RegionsSelect/index.vue +++ b/src/components/RegionsSelect/index.vue @@ -26,7 +26,7 @@ showSearch?: boolean; }>(), { - showSearch: true + showSearch: false } ); diff --git a/src/views/shop/shopStore/components/shopStoreEdit.vue b/src/views/shop/shopStore/components/shopStoreEdit.vue index 29e7329..8c0786c 100644 --- a/src/views/shop/shopStore/components/shopStoreEdit.vue +++ b/src/views/shop/shopStore/components/shopStoreEdit.vue @@ -38,6 +38,7 @@