feat: 用户列表& 操作日志联调接口
This commit is contained in:
@@ -174,15 +174,17 @@ export default defineComponent({
|
|||||||
return records.reduce((sum, r) => sum + parseFloat(r.refundAmount || '0'), 0);
|
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 params = { orderNo: props.orderNo, uniqueId: props.uniqueId };
|
||||||
|
|
||||||
const [detailRes] = await Promise.all([getOrderDetail(params), fetchPlayers(1)]);
|
const [detailRes] = await Promise.all([getOrderDetail(params), fetchPlayers(1)]);
|
||||||
|
|
||||||
if (detailRes.code == 200) {
|
if (detailRes.code == 200) {
|
||||||
setDetail(detailRes.data);
|
setDetail(detailRes.data);
|
||||||
}
|
}
|
||||||
setDetailLoading(false);
|
setDetailLoading(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetchData();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const handlePlayerPageChange = (page: number) => {
|
const handlePlayerPageChange = (page: number) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user