1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
| import { httpJson } from "@/request/http";
|
| //获取可用usdt
| const GetUsdt = (params) => {
| return httpJson({
| url:"api/wallet!getUsdt.action",
| method:"get",
| isLoading:false
| }, params)
| }
|
| //提现,进入页面,获取session_token
| const GetSessionToken = (params) => {
| return httpJson({
| url: "api/withdraw!withdraw_open.action",
| method: "get",
| isLoading: false
| }, params)
| };
|
| //提现申请
| const WithdrawApply = (params) => {
| return httpJson({
| url: "api/withdraw!apply.action",
| method: "get",
| isLoading: false
| }, params)
| };
|
| //提现手续费计算
| const WithdrawFee = (params) => {
| return httpJson({
| url: "api/withdraw!fee.action",
| method: "get",
| isLoading: false
| }, params)
| };
|
| //提现限额
| const WithdrawLimit= (params) => {
| return httpJson({
| url: "api/withdraw!limit.action",
| method: "get",
| isLoading: false
| }, params)
| };
|
|
| //提现列表
| const WithdrawList= (params) => {
| return httpJson({
| url: "api/withdraw!list.action",
| method: "get",
| isLoading: false
| }, params)
| };
|
|
| //提现详情
| const WithdrawDetail= (params) => {
| return httpJson({
| url: "api/withdraw!get.action",
| method: "get",
| isLoading: false
| }, params)
| };
|
|
|
| export default {GetUsdt,GetSessionToken, WithdrawApply, WithdrawFee,WithdrawLimit,WithdrawList, WithdrawDetail }
|
|