From f3530cee102eab8e54c7932f9563fa35e9c04639 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 21 二月 2025 10:31:46 +0800
Subject: [PATCH] fix: 页面

---
 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