fix(auth-service): 返回完整手机号,修复QR码扫码失败

- login/profile 接口返回 user.phone.value 替代 user.phone.masked
- 根因:QR码编码脱敏号 199****9327,正则要求纯数字匹配失败

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-31 06:00:47 -08:00
parent 0ffa875a85
commit 3cbb874503
2 changed files with 2 additions and 2 deletions

View File

@ -347,7 +347,7 @@ export class AuthService {
expiresIn,
user: {
accountSequence: user.accountSequence.value,
phone: user.phone.masked,
phone: user.phone.value,
source: user.source,
kycStatus: user.kycStatus,
},

View File

@ -42,7 +42,7 @@ export class UserService {
return {
accountSequence: user.accountSequence.value,
phone: user.phone.masked,
phone: user.phone.value,
source: user.source,
status: user.status,
kycStatus: user.kycStatus,