diff --git a/src/pages/Contact/index.jsx b/src/pages/Contact/index.jsx index 1a19e23..e746b39 100644 --- a/src/pages/Contact/index.jsx +++ b/src/pages/Contact/index.jsx @@ -389,7 +389,7 @@ const ContactContent = (props) => { }, body: JSON.stringify({ offset: 0, - limit: 1000, + limit: 100, ...base, }), } @@ -480,7 +480,7 @@ export default function Contact() { key: "unread", }, { - label: "全部消息", + label: "最近100条", key: "all", }, ]; diff --git a/src/pages/Feedback/index.jsx b/src/pages/Feedback/index.jsx index 92fc9a2..ba4a917 100644 --- a/src/pages/Feedback/index.jsx +++ b/src/pages/Feedback/index.jsx @@ -8,7 +8,7 @@ import { useLocation, } from "react-router-dom"; import baseRequest from "../../utils/baseRequest"; -import VideoPlayer from '../../components/VideoPlayer'; +import VideoPlayer from "../../components/VideoPlayer"; const FeedbackContent = (props) => { const { TextArea } = Input; const current = props.current; @@ -44,7 +44,7 @@ const FeedbackContent = (props) => { /> ))} {data.videos?.map((item, index) => ( - + ))} ), @@ -229,6 +229,7 @@ const FeedbackContent = (props) => { }, body: JSON.stringify({ mids: userMids, + limit: 200, ...base, }), });