From 9a6427128a3699d933c5a3674bab757c284a5c97 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 28 Mar 2025 23:57:39 +0800
Subject: [PATCH] 1

---
 src/API/fund.api.js |   21 ++++++++++++++++++++-
 1 files changed, 20 insertions(+), 1 deletions(-)

diff --git a/src/API/fund.api.js b/src/API/fund.api.js
index 1c0e6a6..477e7bd 100644
--- a/src/API/fund.api.js
+++ b/src/API/fund.api.js
@@ -91,7 +91,26 @@
         method: 'GET'
     })
 }
-
+// 资金划转
+export const walletGrthertransfer = (params) => {
+  return request({
+    url: "/api/walletGrther!transfer.action",
+    method: "POST",
+	params: {
+	  currency:params.currency,
+	  fromTo:params.fromTo,
+	  amount:params.amount,
+	  safeword:params.safeword
+	},
+  });
+};
+// 获取资金账户
+export const walletGrther = () => {
+  return request({
+    url: "/api/walletGrther!get.action",
+    method: "GET",
+  });
+};
 
 // 初始化接口
 export const _initExchange = () => {

--
Gitblit v1.9.3