feat(player,admin): 钱包卡片与登录页 UI 优化
- 玩家端我的页:钱包背景图、银行卡式排版、自定义语言下拉与投注规则折叠 - 管理端登录:左右布局、金边半透明卡片、自定义语言选择 - 修复 API promotePlayerToTier1Agent 返回类型导致编译失败
This commit is contained in:
@@ -462,7 +462,11 @@ export class AgentsService {
|
||||
await this.recalculateUsedCredit(oldParentId);
|
||||
}
|
||||
|
||||
return this.prisma.user.findUnique({ where: { id: userId } });
|
||||
const updated = await this.prisma.user.findUnique({ where: { id: userId } });
|
||||
if (!updated) {
|
||||
throw new NotFoundException('用户不存在');
|
||||
}
|
||||
return updated;
|
||||
}
|
||||
|
||||
async createAgent(
|
||||
|
||||
Reference in New Issue
Block a user