2025-11-21 04:32:08 +08:00
|
|
|
import axios, { AxiosInstance } from 'axios'
|
|
|
|
|
import type { ApiResponse } from '../types'
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* API 基础配置
|
|
|
|
|
*/
|
|
|
|
|
const apiClient: AxiosInstance = axios.create({
|
|
|
|
|
baseURL: '/api',
|
|
|
|
|
timeout: 30000,
|
|
|
|
|
headers: {
|
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 请求拦截器
|
|
|
|
|
*/
|
|
|
|
|
apiClient.interceptors.request.use(
|
|
|
|
|
(config) => {
|
|
|
|
|
return config
|
|
|
|
|
},
|
|
|
|
|
(error) => {
|
|
|
|
|
return Promise.reject(error)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 响应拦截器
|
|
|
|
|
*/
|
|
|
|
|
apiClient.interceptors.response.use(
|
|
|
|
|
(response) => {
|
|
|
|
|
return response
|
|
|
|
|
},
|
|
|
|
|
(error) => {
|
|
|
|
|
if (error.response) {
|
|
|
|
|
console.error('API 错误:', error.response.data)
|
|
|
|
|
} else if (error.request) {
|
|
|
|
|
console.error('网络错误:', error.request)
|
|
|
|
|
} else {
|
|
|
|
|
console.error('请求错误:', error.message)
|
|
|
|
|
}
|
|
|
|
|
return Promise.reject(error)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* API 服务
|
|
|
|
|
*/
|
|
|
|
|
export const apiService = {
|
|
|
|
|
/**
|
|
|
|
|
* 账户管理 API
|
|
|
|
|
*/
|
|
|
|
|
accounts: {
|
|
|
|
|
/**
|
|
|
|
|
* 导入账户
|
|
|
|
|
*/
|
|
|
|
|
import: (data: any) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/import', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新账户
|
|
|
|
|
*/
|
|
|
|
|
update: (data: any) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/update', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除账户
|
|
|
|
|
*/
|
|
|
|
|
delete: (data: { accountId: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<void>>('/copy-trading/accounts/delete', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询账户列表
|
|
|
|
|
*/
|
|
|
|
|
list: () =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/list', {}),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询账户详情
|
|
|
|
|
*/
|
|
|
|
|
detail: (data: { accountId?: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/detail', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询账户余额
|
|
|
|
|
*/
|
|
|
|
|
balance: (data: { accountId?: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/balance', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设置默认账户
|
|
|
|
|
*/
|
|
|
|
|
setDefault: (data: { accountId: number }) =>
|
2025-11-27 01:13:52 +08:00
|
|
|
apiClient.post<ApiResponse<void>>('/copy-trading/accounts/set-default', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询所有账户的仓位列表
|
|
|
|
|
*/
|
|
|
|
|
positionsList: () =>
|
2025-11-28 04:11:13 +08:00
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/positions/list', {}),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 卖出仓位
|
|
|
|
|
*/
|
|
|
|
|
sellPosition: (data: any) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/positions/sell', data),
|
|
|
|
|
|
2025-12-01 13:02:58 +08:00
|
|
|
/**
|
|
|
|
|
* 获取可赎回仓位统计
|
|
|
|
|
*/
|
|
|
|
|
getRedeemableSummary: (data: { accountId?: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/positions/redeemable-summary', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 赎回仓位
|
|
|
|
|
*/
|
|
|
|
|
redeemPositions: (data: any) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/accounts/positions/redeem', data),
|
|
|
|
|
|
2025-11-29 11:08:01 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 市场数据 API
|
|
|
|
|
*/
|
|
|
|
|
markets: {
|
2025-11-28 04:11:13 +08:00
|
|
|
/**
|
2025-11-29 11:08:01 +08:00
|
|
|
* 获取市场价格(通过 Gamma API)
|
2025-11-28 04:11:13 +08:00
|
|
|
*/
|
2025-11-29 11:08:01 +08:00
|
|
|
getMarketPrice: (data: { marketId: string }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/markets/price', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取最新价(从订单表获取,供前端下单时显示)
|
|
|
|
|
*/
|
|
|
|
|
getLatestPrice: (data: { tokenId: string }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/markets/latest-price', data)
|
2025-11-21 04:32:08 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Leader 管理 API
|
|
|
|
|
*/
|
|
|
|
|
leaders: {
|
|
|
|
|
/**
|
|
|
|
|
* 添加 Leader
|
|
|
|
|
*/
|
2025-12-01 23:03:17 +08:00
|
|
|
add: (data: { leaderAddress: string; leaderName?: string; category?: string }) =>
|
2025-11-21 04:32:08 +08:00
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/leaders/add', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新 Leader
|
|
|
|
|
*/
|
2025-12-01 23:03:17 +08:00
|
|
|
update: (data: { leaderId: number; leaderName?: string; category?: string }) =>
|
2025-11-21 04:32:08 +08:00
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/leaders/update', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除 Leader
|
|
|
|
|
*/
|
|
|
|
|
delete: (data: { leaderId: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<void>>('/copy-trading/leaders/delete', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询 Leader 列表
|
|
|
|
|
*/
|
2025-12-01 23:03:17 +08:00
|
|
|
list: (data: { category?: string } = {}) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/leaders/list', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询 Leader 详情
|
|
|
|
|
*/
|
|
|
|
|
detail: (data: { leaderId: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/leaders/detail', data)
|
2025-11-21 04:32:08 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
2025-12-01 23:03:17 +08:00
|
|
|
* 跟单模板管理 API(子菜单:跟单模板)
|
2025-11-21 04:32:08 +08:00
|
|
|
*/
|
2025-12-01 23:03:17 +08:00
|
|
|
templates: {
|
2025-11-21 04:32:08 +08:00
|
|
|
/**
|
2025-12-01 23:03:17 +08:00
|
|
|
* 创建模板
|
2025-11-21 04:32:08 +08:00
|
|
|
*/
|
2025-12-01 23:03:17 +08:00
|
|
|
create: (data: any) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/templates/create', data),
|
2025-11-21 04:32:08 +08:00
|
|
|
|
|
|
|
|
/**
|
2025-12-01 23:03:17 +08:00
|
|
|
* 更新模板
|
2025-11-21 04:32:08 +08:00
|
|
|
*/
|
|
|
|
|
update: (data: any) =>
|
2025-12-01 23:03:17 +08:00
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/templates/update', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除模板
|
|
|
|
|
*/
|
|
|
|
|
delete: (data: { templateId: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<void>>('/copy-trading/templates/delete', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 复制模板
|
|
|
|
|
*/
|
|
|
|
|
copy: (data: any) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/templates/copy', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询模板列表
|
|
|
|
|
*/
|
|
|
|
|
list: () =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/templates/list', {}),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询模板详情
|
|
|
|
|
*/
|
|
|
|
|
detail: (data: { templateId: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/templates/detail', data)
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 跟单配置管理 API(子菜单:跟单配置)
|
|
|
|
|
*/
|
|
|
|
|
copyTrading: {
|
|
|
|
|
/**
|
|
|
|
|
* 创建跟单
|
|
|
|
|
*/
|
|
|
|
|
create: (data: { accountId: number; templateId: number; leaderId: number; enabled?: boolean }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/create', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询跟单列表
|
|
|
|
|
*/
|
|
|
|
|
list: (data: { accountId?: number; templateId?: number; leaderId?: number; enabled?: boolean } = {}) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/list', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新跟单状态
|
|
|
|
|
*/
|
|
|
|
|
updateStatus: (data: { copyTradingId: number; enabled: boolean }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/update-status', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除跟单
|
|
|
|
|
*/
|
|
|
|
|
delete: (data: { copyTradingId: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<void>>('/copy-trading/delete', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询钱包绑定的模板
|
|
|
|
|
*/
|
|
|
|
|
getAccountTemplates: (data: { accountId: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/account-templates', data)
|
2025-11-21 04:32:08 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 订单管理 API
|
|
|
|
|
*/
|
|
|
|
|
orders: {
|
|
|
|
|
/**
|
|
|
|
|
* 查询跟单订单列表
|
|
|
|
|
*/
|
|
|
|
|
list: (data: any) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/orders/list', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 取消跟单订单
|
|
|
|
|
*/
|
|
|
|
|
cancel: (data: { copyOrderId: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<void>>('/copy-trading/orders/cancel', data)
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 统计 API
|
|
|
|
|
*/
|
|
|
|
|
statistics: {
|
|
|
|
|
/**
|
|
|
|
|
* 获取全局统计
|
|
|
|
|
*/
|
|
|
|
|
global: (data: { startTime?: number; endTime?: number } = {}) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/statistics/global', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取 Leader 统计
|
|
|
|
|
*/
|
|
|
|
|
leader: (data: { leaderId: number; startTime?: number; endTime?: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/statistics/leader', data),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取分类统计
|
|
|
|
|
*/
|
|
|
|
|
category: (data: { category: string; startTime?: number; endTime?: number }) =>
|
|
|
|
|
apiClient.post<ApiResponse<any>>('/copy-trading/statistics/category', data)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default apiClient
|
|
|
|
|
|