|
|
@ -1,7 +1,7 @@ |
|
|
|
import React, { useEffect, useRef, useState } from "react"; |
|
|
|
import api from "@/api"; |
|
|
|
import MyTable from "@/components/MyTable"; |
|
|
|
import { DeleteFilled, EditOutlined, RightCircleFilled, SolutionOutlined, StopTwoTone } from "@ant-design/icons"; |
|
|
|
import { DeleteFilled, EditOutlined, RightCircleFilled, SolutionOutlined, StopTwoTone, UserAddOutlined } from "@ant-design/icons"; |
|
|
|
import { Button, Form, Input, Modal, Popconfirm, Radio, Select, Switch, message, notification } from "antd"; |
|
|
|
import { getBaseUrl, getOriginUrl } from "@/utils/axios"; |
|
|
|
import { exprotExcel } from "@/utils"; |
|
|
@ -168,12 +168,27 @@ const ProxyList = () => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const createMT5Account = async (id) => { |
|
|
|
const res: any = await api.create_mt5_account({ id }) |
|
|
|
if (res.code === 0) { |
|
|
|
tableRef.current.update(); |
|
|
|
notification.success({ |
|
|
|
message: '创建成功' |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const columns = [ |
|
|
|
{ |
|
|
|
title: '操作', |
|
|
|
render: (row) => { |
|
|
|
return ( |
|
|
|
<div style={{ display: "flex", alignItems: 'center' }}> |
|
|
|
|
|
|
|
{!row.mt5_account && <Popconfirm onConfirm={() => createMT5Account(row.id)} title="确认创建MT5账号?"> |
|
|
|
<UserAddOutlined style={{ marginRight: 10 }} /> |
|
|
|
</Popconfirm>} |
|
|
|
|
|
|
|
<EditOutlined onClick={() => { |
|
|
|
currentAccount.current = row; |
|
|
|
setModal(true); |
|
|
@ -205,6 +220,8 @@ const ProxyList = () => { |
|
|
|
{ title: 'MT账号', dataIndex: 'account' }, |
|
|
|
{ title: '总资产', dataIndex: 'total_assets' }, |
|
|
|
{ title: 'MT余额', dataIndex: 'account_amount' }, |
|
|
|
{ title: 'MT5账号', dataIndex: 'mt5_account' }, |
|
|
|
{ title: 'MT5余额', dataIndex: 'mt5_account_amount' }, |
|
|
|
{ title: '钱包余额', dataIndex: 'balance' }, |
|
|
|
{ title: '本金', dataIndex: 'principal' }, |
|
|
|
{ title: '跟单账号', dataIndex: 'account_follow' }, |
|
|
|