From 9b47ae8f94bf6dde1f55681451f5e8400b79f2b8 Mon Sep 17 00:00:00 2001 From: yezian Date: Wed, 19 Mar 2025 15:59:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=86=BB=E7=BB=93=E6=8F=90?= =?UTF-8?q?=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: , + }, ], }, ];