fix: 处理赛事订单管理详情弹窗样式问题

This commit is contained in:
ZhuRui
2026-08-06 17:05:13 +08:00
parent 98b073e8f5
commit a7e31613c5
5 changed files with 72 additions and 86 deletions
+4 -4
View File
@@ -140,9 +140,9 @@ export interface TournamentAdminOrderInfoVO {
/** 订单详情查询参数 */
export interface OrderDetailQueryParams {
/** 订单编号 */
orderNo: string;
orderNo?: string;
/** 选手ID */
uniqueId: string;
uniqueId?: string;
}
// ============================================================
@@ -178,9 +178,9 @@ export interface TournamentAdminOrderInfoPageVO {
/** 选手列表查询参数 */
export interface OrderPlayerListQueryParams {
/** 订单编号 */
orderNo: string;
orderNo?: string;
/** 选手ID */
uniqueId: string;
uniqueId?: string;
page: string;
limit: string;
}