From 6ec6d078926ba1c0a6d1e6368b835764bbc451b2 Mon Sep 17 00:00:00 2001 From: yezian Date: Thu, 6 Feb 2025 17:38:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9F=A5=E8=AF=A2limit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Contact/index.jsx | 4 ++-- src/pages/Feedback/index.jsx | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) 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, }), });