修改banner间距
This commit is contained in:
parent
6bfd91dc29
commit
972ca91c4e
|
@ -89,7 +89,8 @@ export default function SystemNotice({ navigation, route, ...props }) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<ScrollView style={tailwind("p-4")}>
|
<ScrollView>
|
||||||
|
<View style={tailwind("p-4")}>
|
||||||
{data.map((it) => (
|
{data.map((it) => (
|
||||||
<NoticeItem
|
<NoticeItem
|
||||||
key={it.id}
|
key={it.id}
|
||||||
|
@ -118,6 +119,7 @@ export default function SystemNotice({ navigation, route, ...props }) {
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
{!data.length && <Empty type="nodata" />}
|
{!data.length && <Empty type="nodata" />}
|
||||||
|
</View>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { formatDate, goToPage } from "../../../../utils/tools";
|
||||||
import { Image } from "expo-image";
|
import { Image } from "expo-image";
|
||||||
import Toast from "react-native-toast-message";
|
import Toast from "react-native-toast-message";
|
||||||
import * as Linking from "expo-linking";
|
import * as Linking from "expo-linking";
|
||||||
|
import dayjs from "dayjs";
|
||||||
export default function NoticeItem({ navigation, leftIcon, hasLink, data }) {
|
export default function NoticeItem({ navigation, leftIcon, hasLink, data }) {
|
||||||
const tailwind = useTailwind();
|
const tailwind = useTailwind();
|
||||||
// const currentLink = useMemo(() => {
|
// const currentLink = useMemo(() => {
|
||||||
|
@ -16,6 +17,17 @@ export default function NoticeItem({ navigation, leftIcon, hasLink, data }) {
|
||||||
// return hasAppLink ?? null;
|
// return hasAppLink ?? null;
|
||||||
// }
|
// }
|
||||||
// }, [data]);
|
// }, [data]);
|
||||||
|
//日期格式
|
||||||
|
const renderDay = (time) => {
|
||||||
|
const now = dayjs();
|
||||||
|
if (now.diff(dayjs(time * 1000), "hour") - now.hour() < 1) {
|
||||||
|
return dayjs(time * 1000).format("HH:mm");
|
||||||
|
} else if (now.diff(dayjs(time * 1000), "hour") - now.hour() < 24) {
|
||||||
|
return "昨天" + dayjs(time * 1000).format("HH:mm");
|
||||||
|
} else {
|
||||||
|
return dayjs(time * 1000).format("MM-DD");
|
||||||
|
}
|
||||||
|
};
|
||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
style={{
|
style={{
|
||||||
|
@ -201,7 +213,7 @@ export default function NoticeItem({ navigation, leftIcon, hasLink, data }) {
|
||||||
{/* 时间 */}
|
{/* 时间 */}
|
||||||
<View>
|
<View>
|
||||||
<Text style={{ ...tailwind("text-xs"), color: "#FFFFFF80" }}>
|
<Text style={{ ...tailwind("text-xs"), color: "#FFFFFF80" }}>
|
||||||
{formatDate(data?.push_time || data?.ct)}
|
{renderDay(data?.push_time || data?.ct)}
|
||||||
</Text>
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|
|
@ -247,7 +247,7 @@ export default function HostList() {
|
||||||
))}
|
))}
|
||||||
</View>
|
</View>
|
||||||
{/* Banner预留位置 */}
|
{/* Banner预留位置 */}
|
||||||
<View style={tailwind("mt-4")}>
|
<View style={tailwind("mt-4 mb-10")}>
|
||||||
<Banner banners={bannerList} navigation={navigation} />
|
<Banner banners={bannerList} navigation={navigation} />
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|
Loading…
Reference in New Issue