From 9e72ccd8e8bf0362dde6e6df9410fedbf79115be Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 25 二月 2025 16:53:07 +0800
Subject: [PATCH] fix: 对接

---
 packages/services/api/LifePay.ts |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/packages/services/api/LifePay.ts b/packages/services/api/LifePay.ts
index 7abf054..0808f78 100644
--- a/packages/services/api/LifePay.ts
+++ b/packages/services/api/LifePay.ts
@@ -40,6 +40,14 @@
   });
 }
 
+/** 鑾峰彇鐢佃垂鍏呭�煎尯鍩� GET /api/LifePay/GetElectricSupportArea */
+export async function getElectricSupportArea(options?: API.RequestConfig) {
+  return request<API.ElectricSupportAreaResponse>('/api/LifePay/GetElectricSupportArea', {
+    method: 'GET',
+    ...(options || {}),
+  });
+}
+
 /** 鑾峰彇璁㈠崟鍒嗛〉鏁版嵁 POST /api/LifePay/GetLifePayOrderPage */
 export async function getLifePayOrderPage(
   body: API.QueryLifePayOrderListInput,
@@ -55,6 +63,21 @@
   });
 }
 
+/** 鑾峰彇寰俊鏀粯鐨凧SAPI POST /api/LifePay/GetPayOrderForJsAPI */
+export async function getPayOrderForJsAPI(
+  body: API.GetPayOrderForJsAPIInput,
+  options?: API.RequestConfig
+) {
+  return request<API.ModelPaymentMiniPay>('/api/LifePay/GetPayOrderForJsAPI', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鏍规嵁璁㈠崟鍙疯幏鍙栨敮浠樼姸鎬� GET /api/LifePay/GetPayStatusByOrderNo */
 export async function getPayStatusByOrderNo(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)

--
Gitblit v1.9.1