From e7b532e0514eae9c426465da6e6f922e6e9a0696 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期二, 25 二月 2025 15:13:03 +0800 Subject: [PATCH] fix: bug --- packages/services/api/Account.ts | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/packages/services/api/Account.ts b/packages/services/api/Account.ts index eb4b817..d6cc617 100644 --- a/packages/services/api/Account.ts +++ b/packages/services/api/Account.ts @@ -284,6 +284,21 @@ }); } +/** life pay鎵嬫満楠岃瘉鐮佺櫥褰� POST /api/Account/LifePayPhoneMesssageCodeLogin */ +export async function lifePayPhoneMesssageCodeLogin( + body: API.PhoneMesssageCodeLoginInput, + options?: API.RequestConfig +) { + return request<string>('/api/Account/LifePayPhoneMesssageCodeLogin', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 瀵嗙爜鐧诲綍 POST /api/Account/PasswordLogin */ export async function passwordLogin(body: API.PasswordLoginInput, options?: API.RequestConfig) { return request<API.IdentityModelTokenCacheItem>('/api/Account/PasswordLogin', { -- Gitblit v1.9.1