"use client"; import React, { useEffect, useRef, useState } from "react"; import { Image, Divider } from "antd-mobile"; import { useRouter } from "next/navigation"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleLeft, faAngleRight, faWallet, faPrint, faDollar, } from "@fortawesome/free-solid-svg-icons"; export default function Wallet() { const router = useRouter(); const [visible, setVisible] = useState(false); // 获取屏幕高度 // const scrollHeight = 600; useEffect(() => {}, []); return (
{ router.push("/my"); }} />

我的钱包

{/* 内容 */}

0

金币

0

钻石

// navigation.navigate("WebWithHeader", { // title: "充值中心", // uri: process.env.EXPO_PUBLIC_WEB_URL + "/pay", // }) // } className="flex justify-between items-center py-4 w-full" >
充值
// navigation.navigate("WebWithHeader", { // title: "收支明细", // uri: process.env.EXPO_PUBLIC_WEB_URL + "/bill/recharge", // }) // } onClick={() => { router.push("/bill/recharge"); }} className="flex justify-between items-center py-4" >
收支明细
// Linking.openURL( // `${process.env.EXPO_PUBLIC_WEB_URL}/withdrawal?mid=${data?.mid}&mobile_phone=${tokenAndMobilePhone?.mobile_phone}&token=${tokenAndMobilePhone?.token}` // ) // } className="flex justify-between items-center py-4" >
提现
); }