添加钱包测试功能
This commit is contained in:
406
src/user_pages/wallet/index.tsx
Normal file
406
src/user_pages/wallet/index.tsx
Normal file
@@ -0,0 +1,406 @@
|
||||
import React, { useState } from "react";
|
||||
import { View, Text, Input, Button } from "@tarojs/components";
|
||||
import Taro, { useDidShow } from "@tarojs/taro";
|
||||
import "./index.scss";
|
||||
import { CommonPopup } from "@/components";
|
||||
import httpService from "@/services/httpService";
|
||||
import { withAuth } from "@/components";
|
||||
|
||||
// 交易记录类型
|
||||
interface Transaction {
|
||||
id: number;
|
||||
user_id: number;
|
||||
transaction_type: string;
|
||||
freeze_action: string | null;
|
||||
amount: string;
|
||||
description: string;
|
||||
create_time: string;
|
||||
last_modify_time: string;
|
||||
related_id: number;
|
||||
}
|
||||
|
||||
// 钱包信息类型
|
||||
interface WalletInfo {
|
||||
balance: number;
|
||||
frozen_balance?: number;
|
||||
total_balance?: number;
|
||||
total_income?: number;
|
||||
total_withdraw?: number;
|
||||
}
|
||||
|
||||
|
||||
const WalletPage: React.FC = () => {
|
||||
// 钱包信息状态
|
||||
const [wallet_info, set_wallet_info] = useState<WalletInfo>({
|
||||
balance: 0,
|
||||
});
|
||||
|
||||
// 提现弹窗状态
|
||||
const [show_withdraw_popup, set_show_withdraw_popup] = useState(false);
|
||||
const [withdraw_amount, set_withdraw_amount] = useState("");
|
||||
const [submitting, set_submitting] = useState(false);
|
||||
|
||||
// 交易记录状态
|
||||
const [transactions, set_transactions] = useState<Transaction[]>([]);
|
||||
const [loading_transactions, set_loading_transactions] = useState(false);
|
||||
|
||||
// 页面显示时加载数据
|
||||
useDidShow(() => {
|
||||
load_wallet_data();
|
||||
load_transactions();
|
||||
});
|
||||
|
||||
// 加载钱包数据
|
||||
const load_wallet_data = async () => {
|
||||
try {
|
||||
const response = await httpService.post("/wallet/balance");
|
||||
const { balance, frozen_balance, total_balance, total_income, total_withdraw } = response.data;
|
||||
set_wallet_info({
|
||||
balance,
|
||||
frozen_balance,
|
||||
total_balance,
|
||||
total_income,
|
||||
total_withdraw
|
||||
});
|
||||
} catch (error: any) {
|
||||
console.error("加载钱包数据失败:", error);
|
||||
|
||||
let errorMessage = "加载失败,请重试";
|
||||
if (error && error.response && error.response.data && error.response.data.message) {
|
||||
errorMessage = error.response.data.message;
|
||||
} else if (error && error.data && error.data.message) {
|
||||
errorMessage = error.data.message;
|
||||
}
|
||||
|
||||
Taro.showToast({
|
||||
title: errorMessage,
|
||||
icon: "error",
|
||||
duration: 2000,
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// 加载交易记录
|
||||
const load_transactions = async () => {
|
||||
try {
|
||||
set_loading_transactions(true);
|
||||
console.log("开始加载交易记录...");
|
||||
|
||||
const response = await httpService.post("/wallet/transactions", {
|
||||
page: 1,
|
||||
limit: 20
|
||||
});
|
||||
|
||||
console.log("交易记录响应:", response);
|
||||
|
||||
if (response && response.data && response.data.list) {
|
||||
set_transactions(response.data.list);
|
||||
console.log("设置交易记录:", response.data.list);
|
||||
} else {
|
||||
console.log("响应数据格式异常:", response);
|
||||
set_transactions([]);
|
||||
}
|
||||
} catch (error: any) {
|
||||
console.error("加载交易记录失败:", error);
|
||||
set_transactions([]);
|
||||
|
||||
let errorMessage = "加载交易记录失败";
|
||||
if (error && error.response && error.response.data && error.response.data.message) {
|
||||
errorMessage = error.response.data.message;
|
||||
} else if (error && error.data && error.data.message) {
|
||||
errorMessage = error.data.message;
|
||||
}
|
||||
|
||||
Taro.showToast({
|
||||
title: errorMessage,
|
||||
icon: "error",
|
||||
duration: 2000,
|
||||
});
|
||||
} finally {
|
||||
console.log("加载交易记录完成,设置loading为false");
|
||||
set_loading_transactions(false);
|
||||
}
|
||||
};
|
||||
|
||||
// 处理提现
|
||||
const handle_withdraw = () => {
|
||||
if (wallet_info.balance <= 0) {
|
||||
Taro.showToast({
|
||||
title: "余额不足",
|
||||
icon: "error",
|
||||
duration: 2000,
|
||||
});
|
||||
return;
|
||||
}
|
||||
set_show_withdraw_popup(true);
|
||||
};
|
||||
|
||||
// 提交提现申请
|
||||
const submit_withdraw = async () => {
|
||||
if (!withdraw_amount || parseFloat(withdraw_amount) <= 0) {
|
||||
Taro.showToast({
|
||||
title: "请输入有效金额",
|
||||
icon: "error",
|
||||
duration: 2000,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (parseFloat(withdraw_amount) > wallet_info.balance) {
|
||||
Taro.showToast({
|
||||
title: "提现金额不能超过余额",
|
||||
icon: "error",
|
||||
duration: 2000,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
set_submitting(true);
|
||||
|
||||
// 先调用后端接口获取提现参数
|
||||
const response = await httpService.post("/wallet/withdraw", {
|
||||
amount: parseFloat(withdraw_amount),
|
||||
transfer_remark: "用户申请提现"
|
||||
});
|
||||
|
||||
// 根据后端返回的数据结构解析参数
|
||||
const { mch_id, app_id, package: package_info, open_id } = response.data;
|
||||
|
||||
// 调用微信商户转账接口
|
||||
(Taro as any).requestMerchantTransfer({
|
||||
mchId: mch_id,
|
||||
appId: app_id,
|
||||
package: package_info,
|
||||
openId: open_id,
|
||||
success: (res) => {
|
||||
console.log("微信转账成功:", res);
|
||||
|
||||
Taro.showToast({
|
||||
title: "提现成功",
|
||||
icon: "success",
|
||||
duration: 2000,
|
||||
});
|
||||
|
||||
// 关闭弹窗并重置状态
|
||||
set_show_withdraw_popup(false);
|
||||
set_withdraw_amount("");
|
||||
// 重新加载数据
|
||||
load_wallet_data();
|
||||
},
|
||||
fail: (res) => {
|
||||
console.log("微信转账失败:", res);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
// 格式化金额显示
|
||||
const format_amount = (amount: number | string) => {
|
||||
const numAmount = typeof amount === 'string' ? parseFloat(amount) : amount;
|
||||
return numAmount.toFixed(2);
|
||||
};
|
||||
|
||||
// 格式化时间显示
|
||||
const format_time = (time: string) => {
|
||||
const date = new Date(time);
|
||||
const month = String(date.getMonth() + 1).padStart(2, '0');
|
||||
const day = String(date.getDate()).padStart(2, '0');
|
||||
const hours = String(date.getHours()).padStart(2, '0');
|
||||
const minutes = String(date.getMinutes()).padStart(2, '0');
|
||||
const seconds = String(date.getSeconds()).padStart(2, '0');
|
||||
|
||||
return {
|
||||
date: `2025-${month}-${day}`,
|
||||
time: `${hours}:${minutes}:${seconds}`
|
||||
};
|
||||
};
|
||||
|
||||
// 获取交易类型文字
|
||||
const get_transaction_type_text = (transaction: Transaction) => {
|
||||
// 如果有描述信息,优先使用描述
|
||||
if (transaction.description) {
|
||||
return transaction.description;
|
||||
}
|
||||
|
||||
const typeMap: { [key: string]: string } = {
|
||||
'income': '收入',
|
||||
'expense': '支出',
|
||||
'freeze': '冻结',
|
||||
'unfreeze': '解冻'
|
||||
};
|
||||
|
||||
let typeText = typeMap[transaction.transaction_type] || transaction.transaction_type;
|
||||
|
||||
// 如果有冻结操作,添加到类型文字中
|
||||
if (transaction.freeze_action) {
|
||||
const freezeMap: { [key: string]: string } = {
|
||||
'freeze': '冻结',
|
||||
'unfreeze': '解冻'
|
||||
};
|
||||
typeText += `(${freezeMap[transaction.freeze_action]})`;
|
||||
}
|
||||
|
||||
return typeText;
|
||||
};
|
||||
|
||||
// 获取金额显示(带符号)
|
||||
const get_amount_display = (transaction: Transaction) => {
|
||||
const isPositive = transaction.transaction_type === 'income';
|
||||
const prefix = isPositive ? '+' : '-';
|
||||
return `${prefix}${format_amount(transaction.amount)}`;
|
||||
};
|
||||
|
||||
return (
|
||||
<View className="wallet_page">
|
||||
{/* 钱包主卡片 */}
|
||||
<View className="wallet_main_card">
|
||||
{/* 头部信息 */}
|
||||
<View className="card_header">
|
||||
<Text className="header_title">我的现金</Text>
|
||||
<Text className="modify_password">修改交易密码</Text>
|
||||
</View>
|
||||
|
||||
{/* 余额显示 */}
|
||||
<View className="balance_display">
|
||||
<View className="amount_section">
|
||||
<View className="amount_container">
|
||||
<Text className="currency_symbol">¥</Text>
|
||||
<View className="amount_group">
|
||||
<Text className="main_amount">{Math.floor(wallet_info.balance)}</Text>
|
||||
<Text className="decimal_amount">.{((wallet_info.balance % 1) * 100).toFixed(0).padStart(2, '0')}</Text>
|
||||
</View>
|
||||
</View>
|
||||
<Button className="withdraw_btn" onClick={handle_withdraw}>
|
||||
提现
|
||||
</Button>
|
||||
</View>
|
||||
<Text className="available_amount">可提现金额:¥{format_amount(wallet_info.balance)}</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{/* 功能按钮区域 */}
|
||||
<View className="function_buttons">
|
||||
<View className="function_item">
|
||||
<View className="function_icon">
|
||||
<Text className="icon_text">📄</Text>
|
||||
</View>
|
||||
<Text className="function_text">全部账单</Text>
|
||||
</View>
|
||||
<View className="function_item">
|
||||
<View className="function_icon">
|
||||
<Text className="icon_text">🔍</Text>
|
||||
</View>
|
||||
<Text className="function_text">查询交易</Text>
|
||||
</View>
|
||||
<View className="function_item">
|
||||
<View className="function_icon">
|
||||
<Text className="icon_text">⬇️</Text>
|
||||
</View>
|
||||
<Text className="function_text">下载账单</Text>
|
||||
</View>
|
||||
<View className="function_item">
|
||||
<View className="function_icon">
|
||||
<Text className="icon_text">💬</Text>
|
||||
</View>
|
||||
<Text className="function_text">客服中心</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{/* 现金明细 */}
|
||||
<View className="transaction_history">
|
||||
{/* 标题栏 */}
|
||||
<View className="history_header">
|
||||
<Text className="history_title">现金明细</Text>
|
||||
<View className="month_selector">
|
||||
<Text className="current_month">2025-09</Text>
|
||||
<Text className="dropdown_arrow">⌄</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{/* 交易记录列表 */}
|
||||
<View className="transaction_list">
|
||||
{loading_transactions ? (
|
||||
<View className="loading_state">
|
||||
<Text className="loading_text">加载中...</Text>
|
||||
</View>
|
||||
) : transactions.length > 0 ? (
|
||||
transactions.map((transaction) => {
|
||||
const timeInfo = format_time(transaction.create_time);
|
||||
return (
|
||||
<View key={transaction.id} className="transaction_item">
|
||||
<View className="transaction_left">
|
||||
<Text className="transaction_title">
|
||||
{get_transaction_type_text(transaction)}
|
||||
</Text>
|
||||
<View className="transaction_time">
|
||||
<Text className="transaction_date">{timeInfo.date}</Text>
|
||||
<Text className="transaction_clock">{timeInfo.time}</Text>
|
||||
</View>
|
||||
</View>
|
||||
<View className="transaction_right">
|
||||
<Text className="transaction_amount">
|
||||
{get_amount_display(transaction)}
|
||||
</Text>
|
||||
<Text className="balance_info">
|
||||
余额 ¥{format_amount(wallet_info.balance)}
|
||||
</Text>
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
})
|
||||
) : (
|
||||
<View className="empty_state">
|
||||
<Text className="empty_text">暂无交易记录</Text>
|
||||
</View>
|
||||
)}
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{/* 提现弹窗 */}
|
||||
<CommonPopup
|
||||
visible={show_withdraw_popup}
|
||||
onClose={() => set_show_withdraw_popup(false)}
|
||||
onConfirm={submit_withdraw}
|
||||
title="申请提现"
|
||||
className="withdraw_popup"
|
||||
>
|
||||
<View className="popup_content">
|
||||
<View className="form_section">
|
||||
{/* 提现金额 */}
|
||||
<View className="form_item">
|
||||
<Text className="form_label">提现金额</Text>
|
||||
<View className="input_wrapper">
|
||||
<Text className="currency_symbol">¥</Text>
|
||||
<Input
|
||||
className="amount_input with_symbol"
|
||||
type="digit"
|
||||
placeholder="请输入提现金额"
|
||||
value={withdraw_amount}
|
||||
onInput={(e) => set_withdraw_amount(e.detail.value)}
|
||||
/>
|
||||
</View>
|
||||
<Text className="balance_tip">
|
||||
可提现余额:¥{format_amount(wallet_info.balance)}
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
{/* 提现说明 */}
|
||||
<View className="form_item">
|
||||
<Text className="form_label">提现说明</Text>
|
||||
<View className="withdraw_desc">
|
||||
<Text className="desc_text">
|
||||
提现申请提交后,我们将在1-3个工作日内处理并转账到您的账户
|
||||
</Text>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
</CommonPopup>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
export default withAuth(WalletPage);
|
||||
Reference in New Issue
Block a user