♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
import React, { useEffect, useState, useContext } from 'react';
|
2024-04-04 18:18:18 +08:00
|
|
|
|
import {
|
2025-06-03 23:56:39 +08:00
|
|
|
|
API,
|
|
|
|
|
|
showError,
|
|
|
|
|
|
showInfo,
|
|
|
|
|
|
showSuccess,
|
2024-04-04 18:18:18 +08:00
|
|
|
|
renderQuota,
|
|
|
|
|
|
renderQuotaWithAmount,
|
2025-06-06 04:20:57 +08:00
|
|
|
|
copy,
|
2025-06-18 21:23:06 +08:00
|
|
|
|
getQuotaPerUnit,
|
2025-06-03 23:56:39 +08:00
|
|
|
|
} from '../../helpers';
|
2024-03-23 21:24:39 +08:00
|
|
|
|
import {
|
2025-06-09 22:27:39 +08:00
|
|
|
|
Avatar,
|
2024-03-23 21:24:39 +08:00
|
|
|
|
Typography,
|
|
|
|
|
|
Card,
|
|
|
|
|
|
Button,
|
|
|
|
|
|
Modal,
|
2024-04-04 18:18:18 +08:00
|
|
|
|
Toast,
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
Input,
|
|
|
|
|
|
InputNumber,
|
|
|
|
|
|
Banner,
|
|
|
|
|
|
Skeleton,
|
2025-06-09 22:27:39 +08:00
|
|
|
|
Divider,
|
2024-03-23 21:24:39 +08:00
|
|
|
|
} from '@douyinfe/semi-ui';
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
import { SiAlipay, SiWechat } from 'react-icons/si';
|
2024-12-13 19:03:14 +08:00
|
|
|
|
import { useTranslation } from 'react-i18next';
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
import { UserContext } from '../../context/User';
|
2025-05-29 15:52:11 +08:00
|
|
|
|
import { StatusContext } from '../../context/Status/index.js';
|
2025-06-09 22:27:39 +08:00
|
|
|
|
import { useTheme } from '../../context/Theme';
|
|
|
|
|
|
import {
|
|
|
|
|
|
CreditCard,
|
|
|
|
|
|
Gift,
|
|
|
|
|
|
Link as LinkIcon,
|
|
|
|
|
|
Copy,
|
|
|
|
|
|
Users,
|
|
|
|
|
|
User,
|
2025-06-18 21:23:06 +08:00
|
|
|
|
Coins,
|
2025-06-09 22:27:39 +08:00
|
|
|
|
} from 'lucide-react';
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
|
2025-06-09 22:27:39 +08:00
|
|
|
|
const { Text, Title } = Typography;
|
2023-05-16 11:26:09 +08:00
|
|
|
|
|
|
|
|
|
|
const TopUp = () => {
|
2024-12-13 19:03:14 +08:00
|
|
|
|
const { t } = useTranslation();
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
const [userState, userDispatch] = useContext(UserContext);
|
2025-05-29 15:52:11 +08:00
|
|
|
|
const [statusState] = useContext(StatusContext);
|
2025-06-09 22:27:39 +08:00
|
|
|
|
const theme = useTheme();
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const [redemptionCode, setRedemptionCode] = useState('');
|
|
|
|
|
|
const [topUpCode, setTopUpCode] = useState('');
|
|
|
|
|
|
const [amount, setAmount] = useState(0.0);
|
2025-05-29 15:52:11 +08:00
|
|
|
|
const [minTopUp, setMinTopUp] = useState(statusState?.status?.min_topup || 1);
|
2025-06-18 21:23:06 +08:00
|
|
|
|
const [topUpCount, setTopUpCount] = useState(
|
|
|
|
|
|
statusState?.status?.min_topup || 1,
|
|
|
|
|
|
);
|
|
|
|
|
|
const [topUpLink, setTopUpLink] = useState(
|
|
|
|
|
|
statusState?.status?.top_up_link || '',
|
|
|
|
|
|
);
|
|
|
|
|
|
const [enableOnlineTopUp, setEnableOnlineTopUp] = useState(
|
|
|
|
|
|
statusState?.status?.enable_online_topup || false,
|
|
|
|
|
|
);
|
2025-06-09 22:27:39 +08:00
|
|
|
|
const [priceRatio, setPriceRatio] = useState(statusState?.status?.price || 1);
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const [userQuota, setUserQuota] = useState(0);
|
|
|
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
|
|
const [open, setOpen] = useState(false);
|
|
|
|
|
|
const [payWay, setPayWay] = useState('');
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
const [userDataLoading, setUserDataLoading] = useState(true);
|
|
|
|
|
|
const [amountLoading, setAmountLoading] = useState(false);
|
2025-05-23 19:40:43 +08:00
|
|
|
|
const [paymentLoading, setPaymentLoading] = useState(false);
|
|
|
|
|
|
const [confirmLoading, setConfirmLoading] = useState(false);
|
2025-06-18 21:23:06 +08:00
|
|
|
|
const [payMethods, setPayMethods] = useState([]);
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
|
2025-06-06 04:20:57 +08:00
|
|
|
|
// 邀请相关状态
|
|
|
|
|
|
const [affLink, setAffLink] = useState('');
|
|
|
|
|
|
const [openTransfer, setOpenTransfer] = useState(false);
|
|
|
|
|
|
const [transferAmount, setTransferAmount] = useState(0);
|
|
|
|
|
|
|
2025-06-09 22:27:39 +08:00
|
|
|
|
// 预设充值额度选项
|
|
|
|
|
|
const [presetAmounts, setPresetAmounts] = useState([
|
|
|
|
|
|
{ value: 5 },
|
|
|
|
|
|
{ value: 10 },
|
|
|
|
|
|
{ value: 30 },
|
|
|
|
|
|
{ value: 50 },
|
|
|
|
|
|
{ value: 100 },
|
|
|
|
|
|
{ value: 300 },
|
|
|
|
|
|
{ value: 500 },
|
2025-06-18 21:23:06 +08:00
|
|
|
|
{ value: 1000 },
|
2025-06-09 22:27:39 +08:00
|
|
|
|
]);
|
|
|
|
|
|
const [selectedPreset, setSelectedPreset] = useState(null);
|
|
|
|
|
|
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
const getUsername = () => {
|
|
|
|
|
|
if (userState.user) {
|
|
|
|
|
|
return userState.user.username;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return 'null';
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const getUserRole = () => {
|
|
|
|
|
|
if (!userState.user) return t('普通用户');
|
|
|
|
|
|
|
|
|
|
|
|
switch (userState.user.role) {
|
|
|
|
|
|
case 100:
|
|
|
|
|
|
return t('超级管理员');
|
|
|
|
|
|
case 10:
|
|
|
|
|
|
return t('管理员');
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
default:
|
|
|
|
|
|
return t('普通用户');
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2023-05-16 11:26:09 +08:00
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const topUp = async () => {
|
|
|
|
|
|
if (redemptionCode === '') {
|
2024-12-13 19:03:14 +08:00
|
|
|
|
showInfo(t('请输入兑换码!'));
|
2024-03-23 21:24:39 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
setIsSubmitting(true);
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await API.post('/api/user/topup', {
|
|
|
|
|
|
key: redemptionCode,
|
|
|
|
|
|
});
|
|
|
|
|
|
const { success, message, data } = res.data;
|
|
|
|
|
|
if (success) {
|
2024-12-13 19:03:14 +08:00
|
|
|
|
showSuccess(t('兑换成功!'));
|
2024-03-23 21:24:39 +08:00
|
|
|
|
Modal.success({
|
2024-12-13 19:03:14 +08:00
|
|
|
|
title: t('兑换成功!'),
|
|
|
|
|
|
content: t('成功兑换额度:') + renderQuota(data),
|
2024-03-23 21:24:39 +08:00
|
|
|
|
centered: true,
|
|
|
|
|
|
});
|
|
|
|
|
|
setUserQuota((quota) => {
|
|
|
|
|
|
return quota + data;
|
|
|
|
|
|
});
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
if (userState.user) {
|
|
|
|
|
|
const updatedUser = {
|
|
|
|
|
|
...userState.user,
|
2025-06-18 21:23:06 +08:00
|
|
|
|
quota: userState.user.quota + data,
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
};
|
|
|
|
|
|
userDispatch({ type: 'login', payload: updatedUser });
|
|
|
|
|
|
}
|
2024-03-23 21:24:39 +08:00
|
|
|
|
setRedemptionCode('');
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
2024-12-13 19:03:14 +08:00
|
|
|
|
showError(t('请求失败'));
|
2024-03-23 21:24:39 +08:00
|
|
|
|
} finally {
|
|
|
|
|
|
setIsSubmitting(false);
|
2023-10-11 14:57:55 +08:00
|
|
|
|
}
|
2024-03-23 21:24:39 +08:00
|
|
|
|
};
|
2023-10-11 14:57:55 +08:00
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const openTopUpLink = () => {
|
|
|
|
|
|
if (!topUpLink) {
|
2024-12-13 19:03:14 +08:00
|
|
|
|
showError(t('超级管理员未设置充值链接!'));
|
2024-03-23 21:24:39 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
window.open(topUpLink, '_blank');
|
|
|
|
|
|
};
|
2023-12-13 17:02:33 +08:00
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const preTopUp = async (payment) => {
|
|
|
|
|
|
if (!enableOnlineTopUp) {
|
2024-12-13 19:03:14 +08:00
|
|
|
|
showError(t('管理员未开启在线充值!'));
|
2024-03-23 21:24:39 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-05-23 19:40:43 +08:00
|
|
|
|
setPaymentLoading(true);
|
|
|
|
|
|
try {
|
|
|
|
|
|
await getAmount();
|
|
|
|
|
|
if (topUpCount < minTopUp) {
|
|
|
|
|
|
showError(t('充值数量不能小于') + minTopUp);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
setPayWay(payment);
|
|
|
|
|
|
setOpen(true);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
showError(t('获取金额失败'));
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setPaymentLoading(false);
|
2024-03-23 21:24:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
2023-05-16 11:26:09 +08:00
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const onlineTopUp = async () => {
|
|
|
|
|
|
if (amount === 0) {
|
|
|
|
|
|
await getAmount();
|
|
|
|
|
|
}
|
|
|
|
|
|
if (topUpCount < minTopUp) {
|
2024-04-04 18:18:18 +08:00
|
|
|
|
showError('充值数量不能小于' + minTopUp);
|
2024-03-23 21:24:39 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-05-23 19:40:43 +08:00
|
|
|
|
setConfirmLoading(true);
|
2024-03-23 21:24:39 +08:00
|
|
|
|
setOpen(false);
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await API.post('/api/user/pay', {
|
|
|
|
|
|
amount: parseInt(topUpCount),
|
|
|
|
|
|
top_up_code: topUpCode,
|
|
|
|
|
|
payment_method: payWay,
|
|
|
|
|
|
});
|
|
|
|
|
|
if (res !== undefined) {
|
|
|
|
|
|
const { message, data } = res.data;
|
|
|
|
|
|
if (message === 'success') {
|
|
|
|
|
|
let params = data;
|
|
|
|
|
|
let url = res.data.url;
|
|
|
|
|
|
let form = document.createElement('form');
|
|
|
|
|
|
form.action = url;
|
|
|
|
|
|
form.method = 'POST';
|
|
|
|
|
|
let isSafari =
|
|
|
|
|
|
navigator.userAgent.indexOf('Safari') > -1 &&
|
|
|
|
|
|
navigator.userAgent.indexOf('Chrome') < 1;
|
|
|
|
|
|
if (!isSafari) {
|
|
|
|
|
|
form.target = '_blank';
|
|
|
|
|
|
}
|
|
|
|
|
|
for (let key in params) {
|
|
|
|
|
|
let input = document.createElement('input');
|
|
|
|
|
|
input.type = 'hidden';
|
|
|
|
|
|
input.name = key;
|
|
|
|
|
|
input.value = params[key];
|
|
|
|
|
|
form.appendChild(input);
|
|
|
|
|
|
}
|
|
|
|
|
|
document.body.appendChild(form);
|
|
|
|
|
|
form.submit();
|
|
|
|
|
|
document.body.removeChild(form);
|
2023-08-14 22:16:32 +08:00
|
|
|
|
} else {
|
2024-03-23 21:24:39 +08:00
|
|
|
|
showError(data);
|
2023-08-14 22:16:32 +08:00
|
|
|
|
}
|
2024-03-23 21:24:39 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
showError(res);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
console.log(err);
|
2025-05-23 19:40:43 +08:00
|
|
|
|
showError(t('支付请求失败'));
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setConfirmLoading(false);
|
2023-05-16 11:26:09 +08:00
|
|
|
|
}
|
2024-03-23 21:24:39 +08:00
|
|
|
|
};
|
2023-05-16 11:26:09 +08:00
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const getUserQuota = async () => {
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
setUserDataLoading(true);
|
2024-03-23 21:24:39 +08:00
|
|
|
|
let res = await API.get(`/api/user/self`);
|
|
|
|
|
|
const { success, message, data } = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
setUserQuota(data.quota);
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
userDispatch({ type: 'login', payload: data });
|
2024-03-23 21:24:39 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
setUserDataLoading(false);
|
2024-03-23 21:24:39 +08:00
|
|
|
|
};
|
2023-08-14 22:16:32 +08:00
|
|
|
|
|
2025-06-06 04:20:57 +08:00
|
|
|
|
// 获取邀请链接
|
|
|
|
|
|
const getAffLink = async () => {
|
|
|
|
|
|
const res = await API.get('/api/user/aff');
|
|
|
|
|
|
const { success, message, data } = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
let link = `${window.location.origin}/register?aff=${data}`;
|
|
|
|
|
|
setAffLink(link);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 划转邀请额度
|
|
|
|
|
|
const transfer = async () => {
|
|
|
|
|
|
if (transferAmount < getQuotaPerUnit()) {
|
|
|
|
|
|
showError(t('划转金额最低为') + ' ' + renderQuota(getQuotaPerUnit()));
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
const res = await API.post(`/api/user/aff_transfer`, {
|
|
|
|
|
|
quota: transferAmount,
|
|
|
|
|
|
});
|
|
|
|
|
|
const { success, message } = res.data;
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
showSuccess(message);
|
|
|
|
|
|
setOpenTransfer(false);
|
|
|
|
|
|
getUserQuota().then();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
showError(message);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 复制邀请链接
|
2025-06-09 22:27:39 +08:00
|
|
|
|
const handleAffLinkClick = async () => {
|
|
|
|
|
|
await copy(affLink);
|
2025-06-06 04:20:57 +08:00
|
|
|
|
showSuccess(t('邀请链接已复制到剪切板'));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
useEffect(() => {
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
if (userState?.user?.id) {
|
|
|
|
|
|
setUserDataLoading(false);
|
|
|
|
|
|
setUserQuota(userState.user.quota);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
getUserQuota().then();
|
|
|
|
|
|
}
|
2025-06-06 04:20:57 +08:00
|
|
|
|
getAffLink().then();
|
|
|
|
|
|
setTransferAmount(getQuotaPerUnit());
|
2025-06-18 21:23:06 +08:00
|
|
|
|
|
|
|
|
|
|
let payMethods = localStorage.getItem('pay_methods');
|
|
|
|
|
|
try {
|
|
|
|
|
|
payMethods = JSON.parse(payMethods);
|
|
|
|
|
|
if (payMethods && payMethods.length > 0) {
|
|
|
|
|
|
// 检查name和type是否为空
|
|
|
|
|
|
payMethods = payMethods.filter((method) => {
|
|
|
|
|
|
return method.name && method.type;
|
|
|
|
|
|
});
|
|
|
|
|
|
// 如果没有color,则设置默认颜色
|
|
|
|
|
|
payMethods = payMethods.map((method) => {
|
|
|
|
|
|
if (!method.color) {
|
|
|
|
|
|
if (method.type === 'zfb') {
|
|
|
|
|
|
method.color = 'rgba(var(--semi-blue-5), 1)';
|
|
|
|
|
|
} else if (method.type === 'wx') {
|
|
|
|
|
|
method.color = 'rgba(var(--semi-green-5), 1)';
|
|
|
|
|
|
} else {
|
|
|
|
|
|
method.color = 'rgba(var(--semi-primary-5), 1)';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return method;
|
|
|
|
|
|
});
|
|
|
|
|
|
setPayMethods(payMethods);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
console.log(e);
|
|
|
|
|
|
showError(t('支付方式配置错误, 请联系管理员'));
|
|
|
|
|
|
}
|
2024-03-23 21:24:39 +08:00
|
|
|
|
}, []);
|
2023-05-16 11:26:09 +08:00
|
|
|
|
|
2025-05-29 15:52:11 +08:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
if (statusState?.status) {
|
|
|
|
|
|
setMinTopUp(statusState.status.min_topup || 1);
|
|
|
|
|
|
setTopUpCount(statusState.status.min_topup || 1);
|
|
|
|
|
|
setTopUpLink(statusState.status.top_up_link || '');
|
|
|
|
|
|
setEnableOnlineTopUp(statusState.status.enable_online_topup || false);
|
2025-06-09 22:27:39 +08:00
|
|
|
|
setPriceRatio(statusState.status.price || 1);
|
2025-05-29 15:52:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
}, [statusState?.status]);
|
|
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const renderAmount = () => {
|
2024-12-13 19:03:14 +08:00
|
|
|
|
return amount + ' ' + t('元');
|
2024-03-23 21:24:39 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const getAmount = async (value) => {
|
|
|
|
|
|
if (value === undefined) {
|
|
|
|
|
|
value = topUpCount;
|
|
|
|
|
|
}
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
setAmountLoading(true);
|
2024-03-23 21:24:39 +08:00
|
|
|
|
try {
|
|
|
|
|
|
const res = await API.post('/api/user/amount', {
|
|
|
|
|
|
amount: parseFloat(value),
|
|
|
|
|
|
top_up_code: topUpCode,
|
|
|
|
|
|
});
|
|
|
|
|
|
if (res !== undefined) {
|
|
|
|
|
|
const { message, data } = res.data;
|
|
|
|
|
|
if (message === 'success') {
|
|
|
|
|
|
setAmount(parseFloat(data));
|
|
|
|
|
|
} else {
|
2024-04-04 18:18:18 +08:00
|
|
|
|
setAmount(0);
|
|
|
|
|
|
Toast.error({ content: '错误:' + data, id: 'getAmount' });
|
2023-08-14 22:16:32 +08:00
|
|
|
|
}
|
2024-03-23 21:24:39 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
showError(res);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
console.log(err);
|
2023-05-16 11:26:09 +08:00
|
|
|
|
}
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
setAmountLoading(false);
|
2024-03-23 21:24:39 +08:00
|
|
|
|
};
|
2023-05-16 11:26:09 +08:00
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
const handleCancel = () => {
|
|
|
|
|
|
setOpen(false);
|
|
|
|
|
|
};
|
2023-10-11 14:57:55 +08:00
|
|
|
|
|
2025-06-06 04:20:57 +08:00
|
|
|
|
const handleTransferCancel = () => {
|
|
|
|
|
|
setOpenTransfer(false);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-06-09 22:27:39 +08:00
|
|
|
|
// 选择预设充值额度
|
|
|
|
|
|
const selectPresetAmount = (preset) => {
|
|
|
|
|
|
setTopUpCount(preset.value);
|
|
|
|
|
|
setSelectedPreset(preset.value);
|
|
|
|
|
|
setAmount(preset.value * priceRatio);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 格式化大数字显示
|
|
|
|
|
|
const formatLargeNumber = (num) => {
|
|
|
|
|
|
return num.toString();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
return (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='mx-auto relative min-h-screen lg:min-h-0'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{/* 划转模态框 */}
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
title={
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex items-center'>
|
|
|
|
|
|
<CreditCard className='mr-2' size={18} />
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('划转邀请额度')}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
|
|
|
|
|
visible={openTransfer}
|
|
|
|
|
|
onOk={transfer}
|
|
|
|
|
|
onCancel={handleTransferCancel}
|
|
|
|
|
|
maskClosable={false}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='small'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
centered
|
|
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='space-y-4'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Typography.Text strong className='block mb-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('可用邀请额度')}
|
|
|
|
|
|
</Typography.Text>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
value={renderQuota(userState?.user?.aff_quota)}
|
|
|
|
|
|
disabled
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Typography.Text strong className='block mb-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('划转额度')} ({t('最低') + renderQuota(getQuotaPerUnit())})
|
|
|
|
|
|
</Typography.Text>
|
|
|
|
|
|
<InputNumber
|
|
|
|
|
|
min={getQuotaPerUnit()}
|
|
|
|
|
|
max={userState?.user?.aff_quota || 0}
|
|
|
|
|
|
value={transferAmount}
|
|
|
|
|
|
onChange={(value) => setTransferAmount(value)}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
|
|
|
|
|
className='w-full'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Modal>
|
|
|
|
|
|
|
|
|
|
|
|
{/* 充值确认模态框 */}
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
title={
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex items-center'>
|
|
|
|
|
|
<CreditCard className='mr-2' size={18} />
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('充值确认')}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
|
|
|
|
|
visible={open}
|
|
|
|
|
|
onOk={onlineTopUp}
|
|
|
|
|
|
onCancel={handleCancel}
|
|
|
|
|
|
maskClosable={false}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='small'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
centered
|
|
|
|
|
|
confirmLoading={confirmLoading}
|
|
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='space-y-4'>
|
|
|
|
|
|
<div className='flex justify-between items-center py-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Text strong>{t('充值数量')}:</Text>
|
|
|
|
|
|
<Text>{renderQuotaWithAmount(topUpCount)}</Text>
|
|
|
|
|
|
</div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex justify-between items-center py-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Text strong>{t('实付金额')}:</Text>
|
|
|
|
|
|
{amountLoading ? (
|
|
|
|
|
|
<Skeleton.Title style={{ width: '60px', height: '16px' }} />
|
|
|
|
|
|
) : (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text type='danger' strong>
|
|
|
|
|
|
{renderAmount()}
|
|
|
|
|
|
</Text>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex justify-between items-center py-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Text strong>{t('支付方式')}:</Text>
|
|
|
|
|
|
<Text>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
{(() => {
|
|
|
|
|
|
const payMethod = payMethods.find(
|
|
|
|
|
|
(method) => method.type === payWay,
|
|
|
|
|
|
);
|
|
|
|
|
|
if (payMethod) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className='flex items-center'>
|
|
|
|
|
|
{payMethod.type === 'zfb' ? (
|
|
|
|
|
|
<SiAlipay className='mr-1' size={16} />
|
|
|
|
|
|
) : payMethod.type === 'wx' ? (
|
|
|
|
|
|
<SiWechat className='mr-1' size={16} />
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<CreditCard className='mr-1' size={16} />
|
|
|
|
|
|
)}
|
|
|
|
|
|
{payMethod.name}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 默认充值方式
|
|
|
|
|
|
return payWay === 'zfb' ? (
|
|
|
|
|
|
<div className='flex items-center'>
|
|
|
|
|
|
<SiAlipay className='mr-1' size={16} />
|
|
|
|
|
|
{t('支付宝')}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<div className='flex items-center'>
|
|
|
|
|
|
<SiWechat className='mr-1' size={16} />
|
|
|
|
|
|
{t('微信')}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
})()}
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</Text>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Modal>
|
|
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='grid grid-cols-1 lg:grid-cols-12 gap-6'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{/* 左侧充值区域 */}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='lg:col-span-7 space-y-6 w-full'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{/* 在线充值卡片 */}
|
|
|
|
|
|
<Card
|
2025-06-18 21:23:06 +08:00
|
|
|
|
className='!rounded-2xl'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
shadows='always'
|
|
|
|
|
|
bordered={false}
|
|
|
|
|
|
header={
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='px-5 py-4 pb-0'>
|
|
|
|
|
|
<div className='flex items-center justify-between'>
|
|
|
|
|
|
<div className='flex items-center'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Avatar
|
2025-06-18 21:23:06 +08:00
|
|
|
|
className='mr-3 shadow-md flex-shrink-0'
|
|
|
|
|
|
color='blue'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
>
|
|
|
|
|
|
<CreditCard size={24} />
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Title heading={5} style={{ margin: 0 }}>
|
|
|
|
|
|
{t('在线充值')}
|
|
|
|
|
|
</Title>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text type='tertiary' className='text-sm'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('快速方便的充值方式')}
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-06-06 04:20:57 +08:00
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex items-center'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{userDataLoading ? (
|
|
|
|
|
|
<Skeleton.Paragraph style={{ width: '120px' }} rows={1} />
|
|
|
|
|
|
) : (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text type='tertiary' className='hidden sm:block'>
|
|
|
|
|
|
<div className='flex items-center'>
|
|
|
|
|
|
<User size={14} className='mr-1' />
|
|
|
|
|
|
<span className='hidden md:inline'>
|
|
|
|
|
|
{getUsername()} ({getUserRole()})
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span className='md:hidden'>{getUsername()}</span>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
}
|
2024-03-23 21:24:39 +08:00
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='space-y-4'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{/* 账户余额信息 */}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='grid grid-cols-1 md:grid-cols-2 gap-4 mb-2'>
|
|
|
|
|
|
<Card className='!rounded-2xl'>
|
|
|
|
|
|
<Text type='tertiary' className='mb-1'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('当前余额')}
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
{userDataLoading ? (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Skeleton.Title
|
|
|
|
|
|
style={{ width: '100px', height: '30px' }}
|
|
|
|
|
|
/>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
) : (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='text-xl font-semibold mt-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{renderQuota(userState?.user?.quota || userQuota)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Card>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Card className='!rounded-2xl'>
|
|
|
|
|
|
<Text type='tertiary' className='mb-1'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('历史消耗')}
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
{userDataLoading ? (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Skeleton.Title
|
|
|
|
|
|
style={{ width: '100px', height: '30px' }}
|
|
|
|
|
|
/>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
) : (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='text-xl font-semibold mt-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{renderQuota(userState?.user?.used_quota || 0)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Card>
|
2024-03-23 21:24:39 +08:00
|
|
|
|
</div>
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{enableOnlineTopUp && (
|
|
|
|
|
|
<>
|
|
|
|
|
|
{/* 预设充值额度卡片网格 */}
|
|
|
|
|
|
<div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text strong className='block mb-3'>
|
|
|
|
|
|
{t('选择充值额度')}
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
<div className='grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-3'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{presetAmounts.map((preset, index) => (
|
|
|
|
|
|
<Card
|
|
|
|
|
|
key={index}
|
|
|
|
|
|
onClick={() => selectPresetAmount(preset)}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
className={`cursor-pointer !rounded-2xl transition-all hover:shadow-md ${
|
|
|
|
|
|
selectedPreset === preset.value
|
|
|
|
|
|
? 'border-blue-500'
|
|
|
|
|
|
: 'border-gray-200 hover:border-gray-300'
|
|
|
|
|
|
}`}
|
2025-06-09 22:27:39 +08:00
|
|
|
|
bodyStyle={{ textAlign: 'center' }}
|
|
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='font-medium text-lg flex items-center justify-center mb-1'>
|
|
|
|
|
|
<Coins size={16} className='mr-0.5' />
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{formatLargeNumber(preset.value)}
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
</div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='text-xs text-gray-500'>
|
|
|
|
|
|
{t('实付')} ¥
|
|
|
|
|
|
{(preset.value * priceRatio).toFixed(2)}
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
))}
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
</div>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</div>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
{/* 桌面端显示的自定义金额和支付按钮 */}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='hidden md:block space-y-4'>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
<Divider style={{ margin: '24px 0' }}>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text className='text-sm font-medium'>
|
|
|
|
|
|
{t('或输入自定义金额')}
|
|
|
|
|
|
</Text>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
</Divider>
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
|
2025-06-10 00:40:47 +08:00
|
|
|
|
<div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex justify-between mb-2'>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
<Text strong>{t('充值数量')}</Text>
|
|
|
|
|
|
{amountLoading ? (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Skeleton.Title
|
|
|
|
|
|
style={{ width: '80px', height: '16px' }}
|
|
|
|
|
|
/>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
) : (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text type='tertiary'>
|
|
|
|
|
|
{t('实付金额:') + renderAmount()}
|
|
|
|
|
|
</Text>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<InputNumber
|
|
|
|
|
|
disabled={!enableOnlineTopUp}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
placeholder={
|
|
|
|
|
|
t('充值数量,最低 ') + renderQuotaWithAmount(minTopUp)
|
|
|
|
|
|
}
|
2025-06-10 00:40:47 +08:00
|
|
|
|
value={topUpCount}
|
|
|
|
|
|
min={minTopUp}
|
|
|
|
|
|
max={999999999}
|
|
|
|
|
|
step={1}
|
|
|
|
|
|
precision={0}
|
|
|
|
|
|
onChange={async (value) => {
|
|
|
|
|
|
if (value && value >= 1) {
|
|
|
|
|
|
setTopUpCount(value);
|
|
|
|
|
|
setSelectedPreset(null);
|
|
|
|
|
|
await getAmount(value);
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
|
|
|
|
|
onBlur={(e) => {
|
|
|
|
|
|
const value = parseInt(e.target.value);
|
|
|
|
|
|
if (!value || value < 1) {
|
|
|
|
|
|
setTopUpCount(1);
|
|
|
|
|
|
getAmount(1);
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
|
|
|
|
|
className='w-full'
|
|
|
|
|
|
formatter={(value) => (value ? `${value}` : '')}
|
|
|
|
|
|
parser={(value) =>
|
|
|
|
|
|
value ? parseInt(value.replace(/[^\d]/g, '')) : 0
|
|
|
|
|
|
}
|
2025-06-10 00:40:47 +08:00
|
|
|
|
/>
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='grid grid-cols-1 sm:grid-cols-2 gap-4'>
|
|
|
|
|
|
{/* <Button
|
|
|
|
|
|
type='primary'
|
2025-06-10 00:40:47 +08:00
|
|
|
|
onClick={() => preTopUp('zfb')}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
2025-06-10 00:40:47 +08:00
|
|
|
|
disabled={!enableOnlineTopUp}
|
|
|
|
|
|
loading={paymentLoading && payWay === 'zfb'}
|
|
|
|
|
|
icon={<SiAlipay size={18} />}
|
|
|
|
|
|
style={{ height: '44px' }}
|
|
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<span className='ml-2'>{t('支付宝')}</span>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
2025-06-18 21:23:06 +08:00
|
|
|
|
type='primary'
|
2025-06-10 00:40:47 +08:00
|
|
|
|
onClick={() => preTopUp('wx')}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
2025-06-10 00:40:47 +08:00
|
|
|
|
disabled={!enableOnlineTopUp}
|
|
|
|
|
|
loading={paymentLoading && payWay === 'wx'}
|
|
|
|
|
|
icon={<SiWechat size={18} />}
|
|
|
|
|
|
style={{ height: '44px' }}
|
|
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<span className='ml-2'>{t('微信')}</span>
|
|
|
|
|
|
</Button> */}
|
|
|
|
|
|
{payMethods.map((payMethod) => (
|
|
|
|
|
|
<Button
|
|
|
|
|
|
key={payMethod.type}
|
|
|
|
|
|
type='primary'
|
|
|
|
|
|
onClick={() => preTopUp(payMethod.type)}
|
|
|
|
|
|
size='large'
|
|
|
|
|
|
disabled={!enableOnlineTopUp}
|
|
|
|
|
|
loading={paymentLoading && payWay === payMethod.type}
|
|
|
|
|
|
icon={
|
|
|
|
|
|
payMethod.type === 'zfb' ? (
|
|
|
|
|
|
<SiAlipay size={18} />
|
|
|
|
|
|
) : payMethod.type === 'wx' ? (
|
|
|
|
|
|
<SiWechat size={18} />
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<CreditCard size={18} />
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
style={{
|
|
|
|
|
|
height: '44px',
|
|
|
|
|
|
color: payMethod.color,
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<span className='ml-2'>{payMethod.name}</span>
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
))}
|
2025-06-10 00:40:47 +08:00
|
|
|
|
</div>
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
</div>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
|
|
{!enableOnlineTopUp && (
|
|
|
|
|
|
<Banner
|
2025-06-18 21:23:06 +08:00
|
|
|
|
type='warning'
|
|
|
|
|
|
description={t(
|
|
|
|
|
|
'管理员未开启在线充值功能,请联系管理员开启或使用兑换码充值。',
|
|
|
|
|
|
)}
|
2025-06-09 22:27:39 +08:00
|
|
|
|
closeIcon={null}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
className='!rounded-2xl'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
/>
|
|
|
|
|
|
)}
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Divider style={{ margin: '24px 0' }}>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text className='text-sm font-medium'>{t('兑换码充值')}</Text>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</Divider>
|
2025-06-09 19:24:21 +08:00
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Card className='!rounded-2xl'>
|
|
|
|
|
|
<div className='flex items-start mb-4'>
|
|
|
|
|
|
<Gift size={16} className='mr-2 mt-0.5' />
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Text strong>{t('使用兑换码快速充值')}</Text>
|
|
|
|
|
|
</div>
|
2025-06-09 19:24:21 +08:00
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='mb-4'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Input
|
|
|
|
|
|
placeholder={t('请输入兑换码')}
|
|
|
|
|
|
value={redemptionCode}
|
|
|
|
|
|
onChange={(value) => setRedemptionCode(value)}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2025-06-09 19:24:21 +08:00
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex flex-col sm:flex-row gap-3'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{topUpLink && (
|
|
|
|
|
|
<Button
|
2025-06-18 21:23:06 +08:00
|
|
|
|
type='secondary'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
onClick={openTopUpLink}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
|
|
|
|
|
className='flex-1'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
icon={<LinkIcon size={16} />}
|
|
|
|
|
|
style={{ height: '40px' }}
|
|
|
|
|
|
>
|
|
|
|
|
|
{t('获取兑换码')}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
)}
|
|
|
|
|
|
<Button
|
2025-06-18 21:23:06 +08:00
|
|
|
|
type='primary'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
onClick={topUp}
|
|
|
|
|
|
disabled={isSubmitting || !redemptionCode}
|
|
|
|
|
|
loading={isSubmitting}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
|
|
|
|
|
className='flex-1'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
style={{ height: '40px' }}
|
|
|
|
|
|
>
|
|
|
|
|
|
{isSubmitting ? t('兑换中...') : t('兑换')}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{/* 右侧邀请信息卡片 */}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='lg:col-span-5'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Card
|
2025-06-18 21:23:06 +08:00
|
|
|
|
className='!rounded-2xl'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
shadows='always'
|
|
|
|
|
|
bordered={false}
|
|
|
|
|
|
header={
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='px-5 py-4 pb-0'>
|
|
|
|
|
|
<div className='flex items-center justify-between'>
|
|
|
|
|
|
<div className='flex items-center'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Avatar
|
2025-06-18 21:23:06 +08:00
|
|
|
|
className='mr-3 shadow-md flex-shrink-0'
|
|
|
|
|
|
color='green'
|
2025-06-09 22:27:39 +08:00
|
|
|
|
>
|
|
|
|
|
|
<Users size={24} />
|
|
|
|
|
|
</Avatar>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<Title heading={5} style={{ margin: 0 }}>
|
|
|
|
|
|
{t('邀请奖励')}
|
|
|
|
|
|
</Title>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text type='tertiary' className='text-sm'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('邀请好友获得额外奖励')}
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
|
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='space-y-6'>
|
|
|
|
|
|
<div className='grid grid-cols-1 gap-4'>
|
|
|
|
|
|
<Card className='!rounded-2xl'>
|
|
|
|
|
|
<div className='flex justify-between items-center'>
|
|
|
|
|
|
<Text type='tertiary'>{t('待使用收益')}</Text>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Button
|
2025-06-18 21:23:06 +08:00
|
|
|
|
type='primary'
|
|
|
|
|
|
theme='solid'
|
|
|
|
|
|
size='small'
|
|
|
|
|
|
disabled={
|
|
|
|
|
|
!userState?.user?.aff_quota ||
|
|
|
|
|
|
userState?.user?.aff_quota <= 0
|
|
|
|
|
|
}
|
2025-06-09 22:27:39 +08:00
|
|
|
|
onClick={() => setOpenTransfer(true)}
|
|
|
|
|
|
>
|
|
|
|
|
|
{t('划转到余额')}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='text-2xl font-semibold mt-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{renderQuota(userState?.user?.aff_quota || 0)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
2025-06-09 19:24:21 +08:00
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='grid grid-cols-2 gap-4'>
|
|
|
|
|
|
<Card className='!rounded-2xl'>
|
|
|
|
|
|
<Text type='tertiary'>{t('总收益')}</Text>
|
|
|
|
|
|
<div className='text-xl font-semibold mt-2'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{renderQuota(userState?.user?.aff_history_quota || 0)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Card className='!rounded-2xl'>
|
|
|
|
|
|
<Text type='tertiary'>{t('邀请人数')}</Text>
|
|
|
|
|
|
<div className='text-xl font-semibold mt-2 flex items-center'>
|
|
|
|
|
|
<Users size={16} className='mr-1' />
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{userState?.user?.aff_count || 0}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-06-09 19:24:21 +08:00
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='space-y-4'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
<Title heading={6}>{t('邀请链接')}</Title>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
<Input
|
|
|
|
|
|
value={affLink}
|
|
|
|
|
|
readOnly
|
2025-06-18 21:23:06 +08:00
|
|
|
|
size='large'
|
2025-06-10 00:40:47 +08:00
|
|
|
|
suffix={
|
|
|
|
|
|
<Button
|
2025-06-18 21:23:06 +08:00
|
|
|
|
type='primary'
|
|
|
|
|
|
theme='light'
|
2025-06-10 00:40:47 +08:00
|
|
|
|
onClick={handleAffLinkClick}
|
|
|
|
|
|
icon={<Copy size={14} />}
|
|
|
|
|
|
>
|
|
|
|
|
|
{t('复制')}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
2025-06-09 19:24:21 +08:00
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='mt-4'>
|
|
|
|
|
|
<Card className='!rounded-2xl'>
|
|
|
|
|
|
<div className='space-y-4'>
|
|
|
|
|
|
<div className='flex items-start'>
|
|
|
|
|
|
<div className='w-1.5 h-1.5 rounded-full bg-blue-500 mt-2 mr-3 flex-shrink-0'></div>
|
|
|
|
|
|
<Text type='tertiary' className='text-sm leading-6'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('邀请好友注册,好友充值后您可获得相应奖励')}
|
|
|
|
|
|
</Text>
|
2025-06-09 19:24:21 +08:00
|
|
|
|
</div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex items-start'>
|
|
|
|
|
|
<div className='w-1.5 h-1.5 rounded-full bg-green-500 mt-2 mr-3 flex-shrink-0'></div>
|
|
|
|
|
|
<Text type='tertiary' className='text-sm leading-6'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('通过划转功能将奖励额度转入到您的账户余额中')}
|
|
|
|
|
|
</Text>
|
2025-06-06 04:20:57 +08:00
|
|
|
|
</div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex items-start'>
|
|
|
|
|
|
<div className='w-1.5 h-1.5 rounded-full bg-purple-500 mt-2 mr-3 flex-shrink-0'></div>
|
|
|
|
|
|
<Text type='tertiary' className='text-sm leading-6'>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
{t('邀请的好友越多,获得的奖励越多')}
|
|
|
|
|
|
</Text>
|
2025-06-06 04:20:57 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</Card>
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
</div>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</div>
|
♻️refactor: Completely redesign TopUp page with modern card-based UI and enhanced UX
- Replace simple form layout with sophisticated card-based design system
- Implement bank card-style wallet display with gradient backgrounds and decorative elements
- Integrate real user data from UserContext (username, quota, usage stats, user role, group)
- Add personalized color schemes using stringToColor for unique user identification
- Implement comprehensive responsive design for mobile, tablet, and desktop devices
- Add skeleton loading states for all data-dependent components and API calls
- Replace basic Input with InputNumber component for amount input with built-in validation (min: 1)
- Add official brand icons for payment methods (Alipay, WeChat) using react-icons/si
- Integrate Semi UI Banner component for better warning notifications
- Implement real-time data synchronization between local state and UserContext
- Add sophisticated loading states with proper error handling and user feedback
- Clean up all code comments and remove unused imports, functions, and state variables
- Enhance visual hierarchy with proper spacing, shadows, and modern typography
- Add glass-morphism effects and backdrop filters for premium visual experience
- Improve accessibility with proper text truncation and responsive font sizing
This update transforms the TopUp page from a basic form into a professional,
modern payment interface that provides excellent user experience across all devices
while maintaining full functionality and adding comprehensive data validation.
2025-05-23 19:31:36 +08:00
|
|
|
|
</div>
|
2025-06-09 22:27:39 +08:00
|
|
|
|
</Card>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
|
|
|
|
|
|
{/* 移动端底部固定的自定义金额和支付区域 */}
|
|
|
|
|
|
{enableOnlineTopUp && (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div
|
|
|
|
|
|
className='md:hidden fixed bottom-0 left-0 right-0 p-4 shadow-lg z-50'
|
|
|
|
|
|
style={{ background: 'var(--semi-color-bg-0)' }}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div className='space-y-4'>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
<div>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='flex justify-between mb-2'>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
<Text strong>{t('充值数量')}</Text>
|
|
|
|
|
|
{amountLoading ? (
|
|
|
|
|
|
<Skeleton.Title style={{ width: '80px', height: '16px' }} />
|
|
|
|
|
|
) : (
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<Text type='tertiary'>
|
|
|
|
|
|
{t('实付金额:') + renderAmount()}
|
|
|
|
|
|
</Text>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<InputNumber
|
|
|
|
|
|
disabled={!enableOnlineTopUp}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
placeholder={
|
|
|
|
|
|
t('充值数量,最低 ') + renderQuotaWithAmount(minTopUp)
|
|
|
|
|
|
}
|
2025-06-10 00:40:47 +08:00
|
|
|
|
value={topUpCount}
|
|
|
|
|
|
min={minTopUp}
|
|
|
|
|
|
max={999999999}
|
|
|
|
|
|
step={1}
|
|
|
|
|
|
precision={0}
|
|
|
|
|
|
onChange={async (value) => {
|
|
|
|
|
|
if (value && value >= 1) {
|
|
|
|
|
|
setTopUpCount(value);
|
|
|
|
|
|
setSelectedPreset(null);
|
|
|
|
|
|
await getAmount(value);
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
|
|
|
|
|
onBlur={(e) => {
|
|
|
|
|
|
const value = parseInt(e.target.value);
|
|
|
|
|
|
if (!value || value < 1) {
|
|
|
|
|
|
setTopUpCount(1);
|
|
|
|
|
|
getAmount(1);
|
|
|
|
|
|
}
|
|
|
|
|
|
}}
|
2025-06-18 21:23:06 +08:00
|
|
|
|
className='w-full'
|
|
|
|
|
|
formatter={(value) => (value ? `${value}` : '')}
|
|
|
|
|
|
parser={(value) =>
|
|
|
|
|
|
value ? parseInt(value.replace(/[^\d]/g, '')) : 0
|
|
|
|
|
|
}
|
2025-06-10 00:40:47 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<div className='grid grid-cols-2 gap-4'>
|
|
|
|
|
|
{/* <Button
|
|
|
|
|
|
type='primary'
|
2025-06-10 00:40:47 +08:00
|
|
|
|
onClick={() => preTopUp('zfb')}
|
|
|
|
|
|
disabled={!enableOnlineTopUp}
|
|
|
|
|
|
loading={paymentLoading && payWay === 'zfb'}
|
|
|
|
|
|
icon={<SiAlipay size={18} />}
|
|
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<span className='ml-2'>{t('支付宝')}</span>
|
2025-06-10 00:40:47 +08:00
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
2025-06-18 21:23:06 +08:00
|
|
|
|
type='primary'
|
2025-06-10 00:40:47 +08:00
|
|
|
|
onClick={() => preTopUp('wx')}
|
|
|
|
|
|
disabled={!enableOnlineTopUp}
|
|
|
|
|
|
loading={paymentLoading && payWay === 'wx'}
|
|
|
|
|
|
icon={<SiWechat size={18} />}
|
|
|
|
|
|
>
|
2025-06-18 21:23:06 +08:00
|
|
|
|
<span className='ml-2'>{t('微信')}</span>
|
|
|
|
|
|
</Button> */}
|
|
|
|
|
|
{payMethods.map((payMethod) => (
|
|
|
|
|
|
<Button
|
|
|
|
|
|
key={payMethod.type}
|
|
|
|
|
|
type='primary'
|
|
|
|
|
|
onClick={() => preTopUp(payMethod.type)}
|
|
|
|
|
|
disabled={!enableOnlineTopUp}
|
|
|
|
|
|
loading={paymentLoading && payWay === payMethod.type}
|
|
|
|
|
|
icon={
|
|
|
|
|
|
payMethod.type === 'zfb' ? (
|
|
|
|
|
|
<SiAlipay size={18} />
|
|
|
|
|
|
) : payMethod.type === 'wx' ? (
|
|
|
|
|
|
<SiWechat size={18} />
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<CreditCard size={18} />
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
style={{
|
|
|
|
|
|
color: payMethod.color,
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<span className='ml-2'>{payMethod.name}</span>
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
))}
|
2025-06-10 00:40:47 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
2024-03-23 21:24:39 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
2023-05-16 11:26:09 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2024-03-23 21:24:39 +08:00
|
|
|
|
export default TopUp;
|