diff --git a/screeens/NoticeDetail/components/MessageList/index.jsx b/screeens/NoticeDetail/components/MessageList/index.jsx index 369013d..292173f 100644 --- a/screeens/NoticeDetail/components/MessageList/index.jsx +++ b/screeens/NoticeDetail/components/MessageList/index.jsx @@ -9,7 +9,9 @@ import React, { useEffect, forwardRef, useImperativeHandle, + useCallback, } from "react"; +import { Day } from "react-native-gifted-chat"; import { useTailwind } from "tailwind-rn"; import { useSafeAreaInsets } from "react-native-safe-area-context"; import baseRequest from "../../../../utils/baseRequest"; @@ -20,6 +22,7 @@ import { getNoticeCount } from "../../../../store/reducer"; import requireAPI from "../../../../utils/requireAPI"; import { Image } from "expo-image"; import { connect } from "react-redux"; +import dayjs from "dayjs"; const MessageList = ({ navigation, noticeCount, refInstance }) => { const dispatch = useDispatch(); const [data, setData] = useState([]); @@ -139,7 +142,7 @@ const MessageList = ({ navigation, noticeCount, refInstance }) => { newInfoItems[parseInt(it)]["count"] = noticeObj[it].unread_cnt; if (noticeObj[it]["most_recent_notif"]) { const time = noticeObj[it]["most_recent_notif"]["push_time"]; - newInfoItems[parseInt(it)]["time"] = formatDate( + newInfoItems[parseInt(it)]["time"] = renderDay( time ? time : noticeObj[it]["most_recent_notif"]["ct"] ); newInfoItems[parseInt(it)]["subtitle"] = @@ -178,6 +181,17 @@ const MessageList = ({ navigation, noticeCount, refInstance }) => { console.error(error); } }; + //日期格式 + 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"); + } + }; const renderSystemItem = ( { title, subtitle, time, count, icon }, index, @@ -231,7 +245,7 @@ const MessageList = ({ navigation, noticeCount, refInstance }) => { > 99 ? "+99" : count} + value={count > 99 ? "99+" : count} // containerStyle={{ position: "absolute", top: 0, right: 40 }} badgeStyle={{ borderWidth: 0, backgroundColor: "#FF669E" }} /> @@ -332,7 +346,7 @@ const MessageList = ({ navigation, noticeCount, refInstance }) => { 99 ? "+99" : data.contact_cs_urc + data.contact_cs_urc > 99 ? "99+" : data.contact_cs_urc } // containerStyle={{ position: "absolute", top: 0, right: 40 }} badgeStyle={{ borderWidth: 0, backgroundColor: "#FF669E" }} diff --git a/screeens/SpaceSetting/SpacePaymentSetting/index.jsx b/screeens/SpaceSetting/SpacePaymentSetting/index.jsx index 7a4845d..5bd1034 100644 --- a/screeens/SpaceSetting/SpacePaymentSetting/index.jsx +++ b/screeens/SpaceSetting/SpacePaymentSetting/index.jsx @@ -348,11 +348,11 @@ export default function SpacePaymentSetting({ navigation, route }) { }); return; } - Toast.show({ - icon: "success", - content: "修改成功,请重进空间刷新查看", - position: "top", - }); + // Toast.show({ + // icon: "success", + // content: "修改成功,请重进空间刷新查看", + // position: "top", + // }); navigation.goBack(); } catch (error) { console.error(error);