1
This commit is contained in:
@@ -83,7 +83,6 @@ function SharePoster(props) {
|
|||||||
<>
|
<>
|
||||||
<GeneralNavbar
|
<GeneralNavbar
|
||||||
title="生成分享图"
|
title="生成分享图"
|
||||||
backgroundColor="transparent"
|
|
||||||
className={styles.navbar}
|
className={styles.navbar}
|
||||||
/>
|
/>
|
||||||
{url && (
|
{url && (
|
||||||
|
|||||||
@@ -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}
|
||||||
|
|||||||
@@ -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 显示标题
|
||||||
|
|||||||
@@ -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']}>
|
||||||
|
|||||||
@@ -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();
|
||||||
}}
|
}}
|
||||||
|
|||||||
@@ -238,7 +238,6 @@ const FollowPage: React.FC = () => {
|
|||||||
<GeneralNavbar
|
<GeneralNavbar
|
||||||
title="粉丝"
|
title="粉丝"
|
||||||
titlePosition="left"
|
titlePosition="left"
|
||||||
backgroundColor="#FAFAFA"
|
|
||||||
showBack={true}
|
showBack={true}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|||||||
@@ -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();
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user