去掉滚动折叠

This commit is contained in:
2025-11-29 22:52:05 +08:00
parent f4951c18f8
commit 7b0b78c9a0
8 changed files with 36 additions and 20 deletions

View File

@@ -68,7 +68,7 @@
// 主要内容区域
.other_main_content {
min-height: calc(100vh + 5px);
// min-height: calc(100vh + 5px);
position: relative;
z-index: 5;
flex: 1;

View File

@@ -237,7 +237,7 @@ const OtherUserPage: React.FC = () => {
// };
return (
<ScrollView scrollY className="other_user_page" onScroll={handleScroll}>
<ScrollView scrollY className="other_user_page">
{/* <CustomNavbar>
<View className="navbar_content">
<View className="navbar_back" onClick={() => Taro.navigateBack()}>
@@ -301,12 +301,14 @@ const OtherUserPage: React.FC = () => {
loading={loading}
error={null}
isShowNoData={game_records.length === 0}
errorImg="ICON_LIST_EMPTY"
errorImg="ICON_LIST_EMPTY_CARD"
emptyText="暂无球局信息"
loadMoreMatches={() => { }}
collapse={true}
style={{ paddingBottom: 0, overflow: "hidden" }}
listLoadErrorHeight="320px"
listLoadErrorWrapperHeight="267px"
listLoadErrorWidth="100%"
listLoadErrorHeight="152px"
defaultShowNum={3}
/>
</ScrollView>
@@ -342,12 +344,14 @@ const OtherUserPage: React.FC = () => {
loading={loading}
error={null}
isShowNoData={ended_game_records.length === 0}
errorImg="ICON_LIST_EMPTY"
errorImg="ICON_LIST_EMPTY_CARD"
emptyText="暂无球局信息"
loadMoreMatches={() => { }}
collapse={true}
style={{ paddingBottom: "90px", overflow: "hidden" }}
listLoadErrorHeight="320px"
listLoadErrorWrapperHeight="220px"
listLoadErrorWidth="100%"
listLoadErrorHeight="152px"
defaultShowNum={3}
/>
</ScrollView>