查询动态上限改为2000条
This commit is contained in:
parent
f5c4da9852
commit
e2924e0f5e
|
@ -208,7 +208,7 @@ const CreateAndEditPostContent = (props) => {
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
ct_upper_bound: Math.floor(new Date().getTime() / 1000),
|
ct_upper_bound: Math.floor(new Date().getTime() / 1000),
|
||||||
offset: 0,
|
offset: 0,
|
||||||
limit: 200,
|
limit: 2000,
|
||||||
...base,
|
...base,
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
import React, { useState, useEffect } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import { Form, Input, Table, Image, Space, Button, Modal, message } from "antd";
|
import { Form, Input, Table, Image, Space, Button, Modal, message } from "antd";
|
||||||
import baseRequest from "../../utils/baseRequest";
|
import baseRequest from "../../utils/baseRequest";
|
||||||
import ImageUploader from "../../components/ImageUploader";
|
|
||||||
import VideoUploader from "../../components/VideoUploader";
|
|
||||||
|
|
||||||
const TopPostsContent = (props) => {
|
const TopPostsContent = (props) => {
|
||||||
//表头
|
//表头
|
||||||
|
|
Loading…
Reference in New Issue