From 9b47ae8f94bf6dde1f55681451f5e8400b79f2b8 Mon Sep 17 00:00:00 2001 From: yezian Date: Wed, 19 Mar 2025 15:59:36 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=86=BB=E7=BB=93?= =?UTF-8?q?=E6=8F=90=E7=8E=B0=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Op/index.jsx | 5 +- src/pages/WithdrawFreeze/index.jsx | 253 +++++++++++++++++++++++++++++ src/routes/index.js | 5 + 3 files changed, 261 insertions(+), 2 deletions(-) create mode 100644 src/pages/WithdrawFreeze/index.jsx diff --git a/src/pages/Op/index.jsx b/src/pages/Op/index.jsx index 71a8097..e2aac03 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, @@ -84,7 +84,7 @@ export default function Op() { ]), getItem("社区治理", "communityManagement", , [ getItem("用户封禁", "blockUser"), - // getItem("冻结提现", "blockWithdraw"), + getItem("提现封禁", "withdrawFreeze"), ]), getItem( "人工充值/提现", @@ -137,6 +137,7 @@ export default function Op() { ]), getItem("社区治理", "communityManagement", , [ getItem("用户封禁", "blockUser"), + getItem("提现封禁", "withdrawFreeze"), ]), getItem( "人工充值/提现", diff --git a/src/pages/WithdrawFreeze/index.jsx b/src/pages/WithdrawFreeze/index.jsx new file mode 100644 index 0000000..b2f152b --- /dev/null +++ b/src/pages/WithdrawFreeze/index.jsx @@ -0,0 +1,253 @@ +import React, { useState, useEffect } from "react"; +import { Form, Input, Button, Space, Table, message, Modal } from "antd"; +import baseRequest from "../../utils/baseRequest"; + +export default function WithdrawFreeze() { + const [form] = Form.useForm(); + const [loading, setLoading] = useState(false); + const [freezeList, setFreezeList] = useState([]); + const [submitLoading, setSubmitLoading] = useState(false); + const [unfreezeLoading, setUnfreezeLoading] = useState(false); + const [modalVisible, setModalVisible] = useState(false); + const [selectedUser, setSelectedUser] = useState(null); + + // 获取冻结提现列表 + const fetchFreezeList = async () => { + 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 e03d8c2..beefee5 100644 --- a/src/routes/index.js +++ b/src/routes/index.js @@ -38,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 = [ { @@ -200,6 +201,10 @@ const routes = [ path: "rollbackUserRefundSpaceStatus/*", element: , }, + { + path: "withdrawFreeze/*", + element: , + }, ], }, ]; From 6c01b89d035ebbf78ddc66421f56ead76c59e895 Mon Sep 17 00:00:00 2001 From: yezian Date: Wed, 19 Mar 2025 17:59:41 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B6=85=E5=A4=A7limit?= =?UTF-8?q?=EF=BC=9B=E5=88=A0=E9=99=A4=E5=86=97=E4=BD=99=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/BlockUser/index.jsx | 13 +- src/pages/Contact/index.jsx | 6 +- src/pages/CreateAndEditPost/index.jsx | 7 +- src/pages/DeletedPostReview/index.jsx | 151 ------------------ src/pages/EditSpacePost/index.jsx | 3 +- .../HotManage/components/BannerList/index.jsx | 2 +- .../HotManage/components/HotList/index.jsx | 7 +- src/pages/Op/index.jsx | 2 - src/pages/StreamerVerification/index.jsx | 27 ++-- src/routes/index.js | 5 - 10 files changed, 31 insertions(+), 192 deletions(-) delete mode 100644 src/pages/DeletedPostReview/index.jsx 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 a97f857..aefc2ff 100644 --- a/src/pages/CreateAndEditPost/index.jsx +++ b/src/pages/CreateAndEditPost/index.jsx @@ -37,9 +37,7 @@ const CreateAndEditPostContent = (props) => { key: "media", render: (data) => (
- item.urls[0])} - > + item.urls[0])}> {data?.images?.map((item, index) => ( { body: JSON.stringify({ ct_upper_bound: Math.floor(new Date().getTime() / 1000), offset: 0, - limit: 2000, + limit: 100, ...base, }), }); @@ -427,6 +425,7 @@ const CreateAndEditPostContent = (props) => { > 创建动态 +

仅显示最新100条

( -
-

- 动态id:{data.id} -

-

- 点赞:{data.like} -

-

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

-
- ), - }, - { - title: "动态文案", - dataIndex: "content", - key: "content", - }, - { - title: "媒体", - dataIndex: "media", - key: "media", - render: (data) => ( -
- {data?.images?.map((item, index) => ( - - ))} - {data?.videos?.map((item, index) => ( - - ))} -
- ), - }, - { - title: "操作", - dataIndex: "opeartion", - key: "opeartion", - 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 3a8ee89..3130322 100644 --- a/src/pages/EditSpacePost/index.jsx +++ b/src/pages/EditSpacePost/index.jsx @@ -367,7 +367,7 @@ const EditSpacePostContent = (props) => { body: JSON.stringify({ user_id: parseInt(value.userId, 10), offset: 0, - limit: 1000, + limit: 100, ...base, }), }); @@ -446,6 +446,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 966eedd..29616c5 100644 --- a/src/pages/HotManage/components/HotList/index.jsx +++ b/src/pages/HotManage/components/HotList/index.jsx @@ -495,7 +495,7 @@ const HotList = (props) => { }, body: JSON.stringify({ offset, - limit: 2000, + limit: 100, status, ...base, }), @@ -505,11 +505,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 e2aac03..e6d876d 100644 --- a/src/pages/Op/index.jsx +++ b/src/pages/Op/index.jsx @@ -60,7 +60,6 @@ export default function Op() { getItem("主播昵称机审回查", "streamerNickTextMachineReview"), getItem("广场动态审核", "postMachineReview"), getItem("空间动态审核", "zonePostMachineReview"), - getItem("已删除动态回捞", "deletedPostReview"), ]), getItem("网红管理", "streamerManagement", , [ getItem("网红资料", "streamerInformation"), @@ -113,7 +112,6 @@ export default function Op() { getItem("主播昵称机审回查", "streamerNickTextMachineReview"), getItem("动态机审回查", "postMachineReview"), // getItem("空间动态审核", "zonePostMachineReview"), - // getItem("已删除动态回捞", "deletedPostReview"), ]), getItem("网红管理", "streamerManagement", , [ getItem("网红资料", "streamerInformation"), 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条

, }, - { - path: "deletedPostReview/*", - element: , - }, { path: "zonePostMachineReview/*", element: ,