"use client"; import React, { useState, useCallback, useEffect } from "react"; import { Divider, Toast, Button, Radio } from "antd-mobile"; import { useParams, useRouter } from "next/navigation"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleLeft } from "@fortawesome/free-solid-svg-icons"; import requireAPI from "@/utils/requireAPI"; import LoadingMask from "@/components/LoadingMask"; import { formatTimestamp } from "@/utils/tools"; export default function RefundDetail() { const [data, setData] = useState(null); const [isLoading, setIsLoading] = useState(false); const [selectedIndex, setIndex] = useState(2); const [checkAble, setCheckAble] = useState(true); const { id } = useParams(); const router = useRouter(); useEffect(() => { const getData = async () => { setIsLoading(true); try { const body = { audit_id: id, }; const refundData = await requireAPI("POST", "/api/zone/refund_info", { body, }); if (refundData.ret === -1) { Toast.show({ icon: "fail", content: refundData.msg, position: "top", }); return; } setData(refundData.data); setIndex(refundData.data.refunds_status); setCheckAble(refundData.data.refunds_status === 1); } catch (error) { console.error(error); } finally { setIsLoading(false); } }; getData(); }, []); const handleSubmit = async () => { setIsLoading(true); try { const body = { audit_id: id, refunds_status: selectedIndex, }; const refundData = await requireAPI("POST", "/api/zone/refund_audit", { body, }); if (refundData.ret === -1) { Toast.show({ icon: "fail", content: refundData.msg, position: "top", }); return; } setCheckAble(false); } catch (error) { console.error(error); } finally { setIsLoading(false); } }; return (
{ router.back(); }} />

退款审核

{/* 内容 */}
退款价格 ¥ {data ? data?.price / 100 : "0"}
退款用户
{data?.nike_name}
购买时间
{data ? formatTimestamp(data?.by_time) : ""}
退款时间
{data ? formatTimestamp(data?.refund_t) : ""}
退款联系人
{data?.contact_name}
退款联系方式
{data?.contact_phone}
退款备注
{data?.note}
是否同意当前退款

同意退款

同意退回用户的[空间成员]费用,同时自动禁止用户再次购买此商品。

拒绝退款

拒绝退回用户的[空间成员]费用。
{ if (isLoading || !checkAble) return; handleSubmit(e); }} className="rounded-full px-6 py-2 text-lg text-center mt-6" style={{ background: isLoading || !checkAble ? "#FFFFFF80" : "#FF669E", }} > {data && data?.refunds_status === 4 ? "超时自动提交" : data && data?.refunds_status === 3 ? "2小时无条件退款" : !checkAble ? "您已提交" : isLoading ? "正在提交..." : "提交"}
); }