赛事运营平台 相关功能 #13

Merged
chenzhen merged 133 commits from release/0.01 into master 2026-08-10 16:02:04 +08:00
Showing only changes of commit 16f7ddfb0d - Show all commits
@@ -174,15 +174,17 @@ export default defineComponent({
return records.reduce((sum, r) => sum + parseFloat(r.refundAmount || '0'), 0);
});
useEffect(async () => {
const fetchData = async () => {
const params = { orderNo: props.orderNo, uniqueId: props.uniqueId };
const [detailRes] = await Promise.all([getOrderDetail(params), fetchPlayers(1)]);
if (detailRes.code == 200) {
setDetail(detailRes.data);
}
setDetailLoading(false);
};
useEffect(() => {
fetchData();
}, []);
const handlePlayerPageChange = (page: number) => {