This commit is contained in:
张成
2025-11-14 23:43:51 +08:00
parent 0cf5acde1e
commit 53673a41b1
7 changed files with 8 additions and 8 deletions

View File

@@ -83,7 +83,6 @@ function SharePoster(props) {
<> <>
<GeneralNavbar <GeneralNavbar
title="生成分享图" title="生成分享图"
backgroundColor="transparent"
className={styles.navbar} className={styles.navbar}
/> />
{url && ( {url && (

View File

@@ -267,7 +267,6 @@ const OrderList = () => {
> >
<GeneralNavbar <GeneralNavbar
title="订单列表" title="订单列表"
backgroundColor="#FAFAFA"
titlePosition="left" titlePosition="left"
titleClassName={styles.titleClassName} titleClassName={styles.titleClassName}
className={styles.navbar} className={styles.navbar}

View File

@@ -127,9 +127,14 @@ const MainPage: React.FC = () => {
/> />
); );
} else if (currentTab === "message") { } else if (currentTab === "message") {
// 消息页:使用 GeneralNavbar与原始消息页一致只传递 title // 消息页:使用 GeneralNavbar与原始消息页一致显示用户头像和标题
return ( return (
<GeneralNavbar title="消息" /> <GeneralNavbar
title="消息"
titlePosition="left"
showBack={false}
showAvatar={true}
/>
); );
} else if (currentTab === "personal") { } else if (currentTab === "personal") {
// 我的页:使用 GeneralNavbar 显示标题 // 我的页:使用 GeneralNavbar 显示标题

View File

@@ -613,7 +613,7 @@ useEffect(() => {
} }
return ( return (
<View className={`${styles['publish-ball-container']} ${isKeyboardVisible && shouldReactToKeyboard ? styles['publish-ball-container-keyboard'] : ''}`} style={{ bottom: isKeyboardVisible && shouldReactToKeyboard ? `${keyboardHeight - 124}px` : 0 }}> <View className={`${styles['publish-ball-container']} ${isKeyboardVisible && shouldReactToKeyboard ? styles['publish-ball-container-keyboard'] : ''}`} style={{ bottom: isKeyboardVisible && shouldReactToKeyboard ? `${keyboardHeight - 124}px` : 0 }}>
<GeneralNavbar title={titleBar} backgroundColor="#FAFAFA" className={styles['publish-ball-navbar']} /> <GeneralNavbar title={titleBar} className={styles['publish-ball-navbar']} />
<View className={styles['publish-ball']} style={{ paddingTop: `${statusNavbarHeightInfo.totalHeight}px` }}> <View className={styles['publish-ball']} style={{ paddingTop: `${statusNavbarHeightInfo.totalHeight}px` }}>
{/* 活动类型切换 */} {/* 活动类型切换 */}
{/* <View className={styles['activity-type-switch']}> {/* <View className={styles['activity-type-switch']}>

View File

@@ -370,7 +370,6 @@ const EditProfilePage: React.FC = () => {
title="" title=""
showBack={true} showBack={true}
showAvatar={false} showAvatar={false}
backgroundColor="transparent"
onBack={() => { onBack={() => {
Taro.navigateBack(); Taro.navigateBack();
}} }}

View File

@@ -238,7 +238,6 @@ const FollowPage: React.FC = () => {
<GeneralNavbar <GeneralNavbar
title="粉丝" title="粉丝"
titlePosition="left" titlePosition="left"
backgroundColor="#FAFAFA"
showBack={true} showBack={true}
/> />

View File

@@ -232,7 +232,6 @@ const OtherUserPage: React.FC = () => {
title="" title=""
showBack={true} showBack={true}
showAvatar={false} showAvatar={false}
backgroundColor="transparent"
onBack={() => { onBack={() => {
Taro.navigateBack(); Taro.navigateBack();
}} }}