1
jhzh
2025-06-18 3cc464c397d2c4feb6241271b5de6f60c69ea8f2
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 = () => {
@@ -219,3 +238,14 @@
        }
    })
}
// 获取资金账户
export const getwalletGrther = (params) => {
  return request({
    url: "/api/walletGrther!getParameter.action",
    method: "GET",
   params: {
     currency:params.currency,
     fromTo:params.fromTo,
   },
  });
};