feat(player): 充值订单详情与审核记录,优化桌面端交互与记录列表样式

新增充值详情页及单条订单 API,修复桌面充值提交路径;充值/注单记录编号改为中性色,并包含桌面首页与投注相关 UI 改进。
This commit is contained in:
2026-07-02 10:47:46 +08:00
parent 49eb3cb7e0
commit 66ac69c7a7
31 changed files with 2251 additions and 905 deletions

View File

@@ -436,6 +436,15 @@ export class PlayerController {
return jsonResponse(result);
}
@Get('deposit-orders/:id')
async myDepositOrder(
@CurrentUser('id') userId: bigint,
@Param('id') id: string,
) {
const order = await this.deposit.getPlayerDepositOrder(userId, BigInt(id));
return jsonResponse(order);
}
@Get('deposit-orders/:id/audit-logs')
async myDepositOrderAuditLogs(
@CurrentUser('id') userId: bigint,