From 2e22bc2226199b3aa7f4c618c21cfa6a7cdcec19 Mon Sep 17 00:00:00 2001 From: liu <2302563948@qq.com> Date: Thu, 2 Jul 2026 00:52:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E5=B8=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/PublishPopup/index.tsx | 46 ++++++++++++++------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/src/components/PublishPopup/index.tsx b/src/components/PublishPopup/index.tsx index 7cb4139..4ba5158 100644 --- a/src/components/PublishPopup/index.tsx +++ b/src/components/PublishPopup/index.tsx @@ -31,32 +31,34 @@ export default function PublishPopup({ visible, onClose, onSelect }: PublishPopu round rootPortal onClose={onClose} - closeable overlayStyle={{ backgroundColor: 'rgba(0,0,0,0.5)' }} > - - - 发布 - 选择你要发布的内容类型 + + + 发布 + 选择你要发布的内容类型 - - {PUBLISH_OPTIONS.map((option) => ( - onSelect(option)} - > - {option.icon} - - {option.label} - {option.desc} - + {PUBLISH_OPTIONS.map((option) => ( + onSelect(option)} + > + {option.icon} + + {option.label} + {option.desc} - ))} - - - 取消 - + + ))} )