diff --git a/src/pages/BlockUser/index.jsx b/src/pages/BlockUser/index.jsx index bd7670d..aeb0dfb 100644 --- a/src/pages/BlockUser/index.jsx +++ b/src/pages/BlockUser/index.jsx @@ -10,7 +10,6 @@ import { import baseRequest from "../../utils/baseRequest"; const BlockUserContent = (props) => { - const { TextArea } = Input; const current = props.current; //表头 const columns = [ @@ -137,7 +136,7 @@ const BlockUserContent = (props) => { //获取数据 const [data, setData] = useState([]); - const getData = async () => { + const getData = async (user_id) => { let querryUrl; switch (current) { case "blocking": @@ -158,7 +157,8 @@ const BlockUserContent = (props) => { }, body: JSON.stringify({ offset: 0, - limit: 10000, + limit: 100, + user_id: user_id ? parseInt(user_id, 10) : undefined, ...base, }), }); @@ -197,7 +197,7 @@ const BlockUserContent = (props) => { ut: new Date(item.account_punishments.ut * 1000).toLocaleString(), }; }); - setData([...data, ...structedData]); + setData([...structedData]); } catch (error) { console.error(error); } @@ -214,9 +214,7 @@ const BlockUserContent = (props) => { //搜索用户 const search = (value) => { - value.id - ? setShowData(data.filter((item) => item.user.user_id == value.id)) - : setShowData(data); + getData(value.id); }; //打开添加封禁Modal @@ -323,6 +321,7 @@ const BlockUserContent = (props) => { > 添加封禁 +

仅显示最新100条

{ "Content-Type": "application/json", }, body: JSON.stringify({ + limit: 100, + offset: 0, ...base, }), } @@ -51,7 +53,7 @@ const ContactContent = (props) => { body: JSON.stringify({ mids: userMids, offset: 0, - limit: 1000, + limit: 100, ...base, }), }); @@ -413,7 +415,7 @@ const ContactContent = (props) => { body: JSON.stringify({ mids: userMids, offset: 0, - limit: 1000, + limit: 100, ...base, }), }); diff --git a/src/pages/CreateAndEditPost/index.jsx b/src/pages/CreateAndEditPost/index.jsx index 6cf1554..7c20d70 100644 --- a/src/pages/CreateAndEditPost/index.jsx +++ b/src/pages/CreateAndEditPost/index.jsx @@ -222,7 +222,7 @@ const CreateAndEditPostContent = (props) => { body: JSON.stringify({ ct_upper_bound: Math.floor(new Date().getTime() / 1000), offset: 0, - limit: 20 + offset, + limit: 100, ...base, }), }); @@ -455,6 +455,7 @@ const CreateAndEditPostContent = (props) => { > 创建动态 +

仅显示最新100条

( -
-

- 动态id:{data.id} -

-

- 点赞:{data.like} -

-

- 创建时间:{data.ct} -

-
- ), - }, - { - title: "动态文案", - dataIndex: "content", - key: "content", - }, - { - title: "媒体", - dataIndex: "media", - key: "media", - width: 600, - render: (data) => ( -
- {data?.images?.map((item, index) => ( - - ))} - {data?.videos?.map((item, index) => ( - - ))} -
- ), - }, - { - title: "操作", - dataIndex: "opeartion", - key: "opeartion", - width: 200, - render: (_, record) => ( -
- - - - - -
- ), - }, - ]; - - //点击恢复按钮 - const onClickRecovery = async (record) => { - try { - const base = baseRequest(); - const response = await fetch("/op/moment/update", { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - id: record.info.id, - del_flag: 0, - ...base, - }), - }); - const temData = await response.json(); - console.log(temData); - if (temData.ret === -1) { - alert(temData.msg); - return; - } - setShowData(showData.filter((item) => item.info.id !== record.info.id)); - } catch (error) { - console.error(error); - } - }; - - //展示的数据 - const [showData, setShowData] = useState([]); - - //获取数据 - const getData = async () => { - try { - const base = baseRequest(); - const response = await fetch("/op/moment/list_deleted", { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ - ct_upper_bound: Math.floor(new Date().getTime() / 1000), - offset: 0, - limit: 2000, - ...base, - }), - }); - const temData = await response.json(); - if (temData.ret === -1) { - alert(temData.msg); - return; - } - //匹配表格格式 - const structedData = temData.data.list.map((item, index) => { - return { - key: index, - info: { - id: item.id, - like: item.thumbs_up_num, - ct: new Date(item.ct * 1000).toLocaleString(), - }, - content: item.text, - media: item.media_component, - }; - }); - setShowData(structedData); - } catch (error) { - console.error(error); - } - }; - useEffect(() => { - getData(); - }, []); - - return ( -
-
- - ); -} diff --git a/src/pages/EditSpacePost/index.jsx b/src/pages/EditSpacePost/index.jsx index 26a3192..256bdb1 100644 --- a/src/pages/EditSpacePost/index.jsx +++ b/src/pages/EditSpacePost/index.jsx @@ -383,7 +383,7 @@ const EditSpacePostContent = (props) => { body: JSON.stringify({ user_id: parseInt(value.userId, 10), offset: 0, - limit: 1000, + limit: 100, ...base, }), }); @@ -462,6 +462,7 @@ const EditSpacePostContent = (props) => { +

仅显示最新100条

{ }, body: JSON.stringify({ offset: offset, - limit: 200, + limit: 100, ...base, }), }); diff --git a/src/pages/HotManage/components/HotList/index.jsx b/src/pages/HotManage/components/HotList/index.jsx index 352a53c..0ccc67a 100644 --- a/src/pages/HotManage/components/HotList/index.jsx +++ b/src/pages/HotManage/components/HotList/index.jsx @@ -493,7 +493,7 @@ const HotList = (props) => { }, body: JSON.stringify({ offset, - limit: 2000, + limit: 100, status, ...base, }), @@ -503,11 +503,6 @@ const HotList = (props) => { alert(temData.msg); return; } - console.log("temData.data.list", temData.data.list, { - offset: offset, - limit: 200, - status, - }); setData((old) => isFirst ? temData.data.list : [...old, ...temData.data.list] diff --git a/src/pages/Op/index.jsx b/src/pages/Op/index.jsx index cd51f11..28bc202 100644 --- a/src/pages/Op/index.jsx +++ b/src/pages/Op/index.jsx @@ -35,7 +35,7 @@ export default function Op() { checkToken(); const b_mid = baseRequest().b_mid; setMid(b_mid); - }, [location]); + }, [location, navigate]); function getItem(label, key, icon, children, type) { return { key, @@ -60,7 +60,6 @@ export default function Op() { getItem("主播昵称机审回查", "streamerNickTextMachineReview"), getItem("广场动态审核", "postMachineReview"), getItem("空间动态审核", "zonePostMachineReview"), - getItem("已删除动态回捞", "deletedPostReview"), ]), getItem("网红管理", "streamerManagement", , [ getItem("网红资料", "streamerInformation"), @@ -84,7 +83,7 @@ export default function Op() { ]), getItem("社区治理", "communityManagement", , [ getItem("用户封禁", "blockUser"), - // getItem("冻结提现", "blockWithdraw"), + getItem("提现封禁", "withdrawFreeze"), ]), getItem( "人工充值/提现", @@ -116,7 +115,6 @@ export default function Op() { getItem("主播昵称机审回查", "streamerNickTextMachineReview"), getItem("动态机审回查", "postMachineReview"), // getItem("空间动态审核", "zonePostMachineReview"), - // getItem("已删除动态回捞", "deletedPostReview"), ]), getItem("网红管理", "streamerManagement", , [ getItem("网红资料", "streamerInformation"), @@ -140,6 +138,7 @@ export default function Op() { ]), getItem("社区治理", "communityManagement", , [ getItem("用户封禁", "blockUser"), + getItem("提现封禁", "withdrawFreeze"), ]), getItem( "人工充值/提现", diff --git a/src/pages/StreamerVerification/index.jsx b/src/pages/StreamerVerification/index.jsx index def71d7..b629c2f 100644 --- a/src/pages/StreamerVerification/index.jsx +++ b/src/pages/StreamerVerification/index.jsx @@ -169,10 +169,7 @@ const VerificationContent = (props) => { }; //获取数据 const [data, setData] = useState([]); - const [offset, setOffset] = useState(0); - const [more, setMore] = useState(1); - const getData = async () => { - if (!more) return; + const getData = async (user_id) => { let querryStatus; switch (current) { case "pending": @@ -196,8 +193,9 @@ const VerificationContent = (props) => { }, body: JSON.stringify({ status: querryStatus, - offset: offset, - limit: 10000, + offset: 0, + limit: 100, + user_id, ...base, }), }); @@ -220,7 +218,7 @@ const VerificationContent = (props) => { body: JSON.stringify({ mids: streamerMids, offset: 0, - limit: 10000, + limit: 100, ...base, }), }); @@ -258,9 +256,7 @@ const VerificationContent = (props) => { status: item.status, }; }); - setData([...data, ...structedData]); - setOffset(temData.data.offset); - setMore(temData.data.more); + setData([...structedData]); } catch (error) { console.error(error); } @@ -276,9 +272,13 @@ const VerificationContent = (props) => { }, [data]); //搜索名人 const search = (value) => { - value.id - ? setShowData(data.filter((item) => item.baseInfo.user_id == value.id)) - : setShowData(data); + if (value.id) { + setData([]); + getData(parseInt(value.id)); + } else { + setData([]); + getData(); + } }; //表单提交失败 const onFinishFailed = (errorInfo) => { @@ -301,6 +301,7 @@ const VerificationContent = (props) => { +

仅显示最新100条

{ + setLoading(true); + try { + const base = baseRequest(); + const response = await fetch("/op/vas/get_withdraw_freeze_list", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ ...base }), + }); + const result = await response.json(); + if (result.ret === 1) { + setFreezeList(result.data?.list || []); + } else { + message.error("获取冻结提现列表失败"); + } + } catch (error) { + console.error("获取冻结提现列表出错:", error); + message.error("获取冻结提现列表出错"); + } finally { + setLoading(false); + } + }; + + // 添加冻结提现 + const handleAddFreeze = async (values) => { + setSubmitLoading(true); + try { + const base = baseRequest(); + const response = await fetch("/op/vas/add_withdraw_freeze", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + ...base, + user_id: parseInt(values.user_id), + }), + }); + const result = await response.json(); + if (result.ret === 1) { + message.success("添加冻结提现成功"); + form.resetFields(); + fetchFreezeList(); + } else { + message.error("添加冻结提现失败"); + } + } catch (error) { + console.error("添加冻结提现出错:", error); + message.error("添加冻结提现出错"); + } finally { + setSubmitLoading(false); + } + }; + + // 显示解冻确认弹窗 + const showUnfreezeModal = (record) => { + setSelectedUser(record); + setModalVisible(true); + }; + + // 解除冻结提现 + const handleUnfreeze = async () => { + if (!selectedUser) return; + setUnfreezeLoading(true); + try { + const base = baseRequest(); + const response = await fetch("/op/vas/del_withdraw_freeze", { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ + ...base, + user_id: parseInt(selectedUser.user_id), + }), + }); + const result = await response.json(); + if (result.ret === 1) { + message.success("解除冻结提现成功"); + setModalVisible(false); + fetchFreezeList(); + } else { + message.error("解除冻结提现失败"); + } + } catch (error) { + console.error("解除冻结提现出错:", error); + message.error("解除冻结提现出错"); + } finally { + setUnfreezeLoading(false); + } + }; + + // 表格列定义 + const columns = [ + { + title: "用户ID", + dataIndex: "user_id", + key: "user_id", + }, + { + title: "用户资料", + dataIndex: "account", + key: "account", + render: (account) => ( +
+ {account ? ( + <> + 头像 +
昵称: {account.name || "-"}
+ + ) : ( + "-" + )} +
+ ), + }, + { + title: "封禁时间", + dataIndex: "ct", + key: "ct", + render: (text) => new Date(text * 1000).toLocaleString(), + }, + { + title: "操作人MID", + dataIndex: "operator_mid", + key: "operator_mid", + }, + { + title: "操作", + key: "action", + render: (_, record) => ( + + ), + }, + ]; + + // 组件挂载时获取冻结提现列表 + useEffect(() => { + fetchFreezeList(); + }, []); + + return ( +
+

提现封禁管理

+ + {/* 添加冻结提现表单 */} +
+

添加提现封禁

+ + + + + + + + + +
+ + {/* 提现封禁列表 */} +
+
+

提现封禁列表

+ +
+
({ + ...item, + key: item.user_id, + }))} + loading={loading} + pagination={{ pageSize: 10 }} + /> + + + {/* 解除封禁确认弹窗 */} + setModalVisible(false)} + footer={[ + , + , + ]} + > +

+ 确定要解除 + {selectedUser?.account?.name} + 的提现封禁吗? +

+
+ + ); +} diff --git a/src/routes/index.js b/src/routes/index.js index 08682bb..a633de2 100644 --- a/src/routes/index.js +++ b/src/routes/index.js @@ -27,7 +27,6 @@ import PostMachineReview from "../pages/PostMachineReview"; import GetPhoneNumber from "../pages/GetPhoneNumber"; import Refund from "../pages/Refund"; import BlockUser from "../pages/BlockUser"; -import DeletedPostReview from "../pages/DeletedPostReview"; import ZonePostMachineReview from "../pages/ZonePostMachineReview"; import GuildMachineReview from "../pages/GuildMachineReview"; import StreamerSpace from "../pages/StreamerSpace"; @@ -39,6 +38,7 @@ import StreamerNickTextMachineReview from "../pages/StreamerNickTextMachineRevie import StreamerVideoMachineReview from "../pages/StreamerVideoMachineReview"; import RollbackUserLeaveSpace from "../pages/RollbackUserLeaveSpace"; import RollbackUserRefundSpaceStatus from "../pages/RollbackUserRefundSpaceStatus/index"; +import WithdrawFreeze from "../pages/WithdrawFreeze"; const routes = [ { @@ -157,10 +157,6 @@ const routes = [ path: "blockUser/*", element: , }, - { - path: "deletedPostReview/*", - element: , - }, { path: "zonePostMachineReview/*", element: , @@ -205,6 +201,10 @@ const routes = [ path: "rollbackUserRefundSpaceStatus/*", element: , }, + { + path: "withdrawFreeze/*", + element: , + }, ], }, ];