合伙人端登录接口优化

This commit is contained in:
2026-07-07 15:22:55 +08:00
parent 7dd8a6662b
commit 2c74f6a08c
4 changed files with 133 additions and 51 deletions
@@ -141,13 +141,25 @@ export class AdminPartnersService {
}
async updatePartnerAccount(id: bigint, dto: UpdatePartnerAccountDto) {
const account = await this.prisma.partnerAccount.update({
where: { id },
data: {
...(dto.name !== undefined ? { name: dto.name } : {}),
...(dto.status !== undefined ? { status: dto.status as 'ACTIVE' | 'DISABLED' } : {}),
},
});
const existing = await this.prisma.partnerAccount.findUnique({ where: { id } });
if (!existing) throw new NotFoundException('开城合伙人账号不存在');
const data: Prisma.PartnerAccountUpdateInput = {};
if (dto.name !== undefined) data.name = dto.name;
if (dto.status !== undefined) data.status = dto.status as 'ACTIVE' | 'DISABLED';
if (dto.phone !== undefined) {
const phone = dto.phone.trim();
if (!/^1[3-9]\d{9}$/.test(phone)) {
throw new BadRequestException('请输入正确的手机号码');
}
const phoneTaken = await this.prisma.partnerAccount.findUnique({ where: { phone } });
if (phoneTaken && phoneTaken.id !== id) {
throw new BadRequestException('该手机号已被使用');
}
data.phone = phone;
}
const account = await this.prisma.partnerAccount.update({ where: { id }, data });
return serializeBigInt(account);
}
}
@@ -193,6 +193,10 @@ export class UpdatePartnerAccountDto {
@IsString()
name?: string;
@IsOptional()
@IsString()
phone?: string;
@IsOptional()
@IsIn(['ACTIVE', 'DISABLED'])
status?: string;