查询动态上限改为2000条

This commit is contained in:
yezian 2024-02-07 19:40:19 +08:00
parent f5c4da9852
commit e2924e0f5e
2 changed files with 1 additions and 3 deletions

View File

@ -208,7 +208,7 @@ const CreateAndEditPostContent = (props) => {
body: JSON.stringify({
ct_upper_bound: Math.floor(new Date().getTime() / 1000),
offset: 0,
limit: 200,
limit: 2000,
...base,
}),
});

View File

@ -1,8 +1,6 @@
import React, { useState, useEffect } from "react";
import { Form, Input, Table, Image, Space, Button, Modal, message } from "antd";
import baseRequest from "../../utils/baseRequest";
import ImageUploader from "../../components/ImageUploader";
import VideoUploader from "../../components/VideoUploader";
const TopPostsContent = (props) => {
//