From 55c03f35a31979aefd46aead13a145c9b293e6d8 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期四, 27 三月 2025 17:38:55 +0800 Subject: [PATCH] fix: 四期需求 --- packages/services/api/Account.ts | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 deletions(-) diff --git a/packages/services/api/Account.ts b/packages/services/api/Account.ts index c0b1194..ade46e0 100644 --- a/packages/services/api/Account.ts +++ b/packages/services/api/Account.ts @@ -42,14 +42,17 @@ body: API.LifePayPhoneMesssageCodeLoginInput, options?: API.RequestConfig ) { - return request<string>('/api/Account/LifePayPhoneMesssageCodeLogin', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - data: body, - ...(options || {}), - }); + return request<API.LifePayPhoneMesssageCodeLoginOutput>( + '/api/Account/LifePayPhoneMesssageCodeLogin', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); } /** 姝ゅ鍚庣娌℃湁鎻愪緵娉ㄩ噴 GET /api/accountAuth/GetCode */ -- Gitblit v1.9.1