球局icon 更新

This commit is contained in:
张成
2025-11-10 17:33:09 +08:00
parent 0657e57fe4
commit 9b70ef8757
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ const ListCard: React.FC<ListCardProps> = ({
// 处理地点截断,确保固定信息始终显示 // 处理地点截断,确保固定信息始终显示
const displayLocation = useMemo(() => { const displayLocation = useMemo(() => {
if (!location) return ''; if (!location) return null; // 直接返回 null不渲染
// 获取屏幕宽度,用于计算实际容器宽度 // 获取屏幕宽度,用于计算实际容器宽度
const systemInfo = Taro.getSystemInfoSync(); const systemInfo = Taro.getSystemInfoSync();

View File

@@ -25,7 +25,7 @@ const SearchBarComponent = (props: IProps) => {
clearable={false} clearable={false}
leftIn={ leftIn={
<View className={styles.searchBarLeft}> <View className={styles.searchBarLeft}>
<Image className={styles.searchIcon} src={img.ICON_SEARCH} /> <Image className={styles.searchIcon} src={img.ICON_LIST_SEARCH_SEARCH} />
</View> </View>
} }
right={ right={