From fdc8663bb2bc7a4dc877e250def6678f8228f086 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AD=B1=E9=87=8E?= Date: Thu, 4 Dec 2025 21:55:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9picker=E9=A2=9C=E8=89=B2?= =?UTF-8?q?=EF=BC=8C=E4=BF=AE=E6=94=B9=E5=8F=91=E5=B8=83=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E5=8A=A8=E6=80=81=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Picker/index.module.scss | 2 +- src/publish_pages/publishBall/publishForm.tsx | 4 ++-- src/store/dictionaryStore.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Picker/index.module.scss b/src/components/Picker/index.module.scss index 38820dd..2b2d946 100644 --- a/src/components/Picker/index.module.scss +++ b/src/components/Picker/index.module.scss @@ -16,7 +16,7 @@ right: 16px !important; width: calc(100% - 32px); height: 48px; - background: rgba(22, 24, 35, 0.05); + background: rgba(0, 0, 0, 0.02); transform: translateY(-50%); border-radius: 4px; pointer-events: none; diff --git a/src/publish_pages/publishBall/publishForm.tsx b/src/publish_pages/publishBall/publishForm.tsx index 5845290..33b815e 100644 --- a/src/publish_pages/publishBall/publishForm.tsx +++ b/src/publish_pages/publishBall/publishForm.tsx @@ -34,7 +34,7 @@ const PublishForm: React.FC<{ // 字典数据相关 const { getDictionaryValue } = useDictionaryActions() - + const tips = getDictionaryValue('fabu_tip'); useEffect(() => { setCoverImages(formData.image_list) }, [formData.image_list]) @@ -191,7 +191,7 @@ const PublishForm: React.FC<{ return <> - 活动开始前2小时未达到最低人数,活动自动取消;活动结束后,报名者累计到达最低人数时,一旦到达期即有序。 + {tips} diff --git a/src/store/dictionaryStore.ts b/src/store/dictionaryStore.ts index cc69bb9..1e504d4 100644 --- a/src/store/dictionaryStore.ts +++ b/src/store/dictionaryStore.ts @@ -28,7 +28,7 @@ export const useDictionaryStore = create()((set, get) => ({ set({ isLoading: true, error: null }) try { - const keys = 'publishing_requirements,court_type,court_surface,supplementary_information,game_play'; + const keys = 'publishing_requirements,court_type,court_surface,supplementary_information,game_play,fabu_tip'; const response = await commonApi.getDictionaryManyKey(keys) if (response.code === 0 && response.data) {