From aab27de6eee48382c6add3e9ca15023365842f16 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期五, 21 二月 2025 10:12:20 +0800 Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/LifePaymentFront --- 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