From 687f685e2882d71c50e0295979e578c5a6394c7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AD=B1=E9=87=8E?= Date: Fri, 10 Oct 2025 20:51:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BC=B9=E7=AA=97=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CommonPopup/index.module.scss | 2 ++ src/components/Picker/CalendarDialog/DialogCalendarCard.tsx | 1 + src/components/Picker/CalendarDialog/index.module.scss | 3 +++ 3 files changed, 6 insertions(+) diff --git a/src/components/CommonPopup/index.module.scss b/src/components/CommonPopup/index.module.scss index d6df636..d5e460e 100644 --- a/src/components/CommonPopup/index.module.scss +++ b/src/components/CommonPopup/index.module.scss @@ -1,6 +1,8 @@ @use '~@/scss/themeColor.scss' as theme; .common-popup { + position: fixed; + z-index: 99999!important; .common-popup__drag-handle-container { position: position; } diff --git a/src/components/Picker/CalendarDialog/DialogCalendarCard.tsx b/src/components/Picker/CalendarDialog/DialogCalendarCard.tsx index daff3c1..fca255a 100644 --- a/src/components/Picker/CalendarDialog/DialogCalendarCard.tsx +++ b/src/components/Picker/CalendarDialog/DialogCalendarCard.tsx @@ -183,6 +183,7 @@ const DialogCalendarCard: React.FC = ({ cancelText="取消" confirmText={getConfirmText()} onConfirm={handleConfirm} + className={styles["calendar-popup"]} position="bottom" round zIndex={1000} diff --git a/src/components/Picker/CalendarDialog/index.module.scss b/src/components/Picker/CalendarDialog/index.module.scss index 95e8153..1573e9f 100644 --- a/src/components/Picker/CalendarDialog/index.module.scss +++ b/src/components/Picker/CalendarDialog/index.module.scss @@ -1,3 +1,6 @@ .calendar-container{ padding: 26px 12px 8px; +} +.calendar-popup{ + background-color: #fff; } \ No newline at end of file