| | |
| | | //获取可用usdt |
| | | const GetUsdt = (params) => { |
| | | return httpJson({ |
| | | url:"api/wallet!getUsdt.action", |
| | | method:"get", |
| | | isLoading:false |
| | | url: "api/wallet!getUsdt.action", |
| | | method: "get", |
| | | isLoading: false |
| | | }, params) |
| | | } |
| | | |
| | |
| | | }; |
| | | |
| | | //提现限额 |
| | | const WithdrawLimit= (params) => { |
| | | const WithdrawLimit = (params) => { |
| | | return httpJson({ |
| | | url: "api/withdraw!limit.action", |
| | | method: "get", |
| | |
| | | |
| | | |
| | | //提现列表 |
| | | const WithdrawList= (params) => { |
| | | const WithdrawList = (params) => { |
| | | return httpJson({ |
| | | url: "api/withdraw!list.action", |
| | | method: "get", |
| | |
| | | |
| | | |
| | | //提现详情 |
| | | const WithdrawDetail= (params) => { |
| | | const WithdrawDetail = (params) => { |
| | | return httpJson({ |
| | | url: "api/withdraw!get.action", |
| | | method: "get", |
| | |
| | | |
| | | |
| | | |
| | | export default {GetUsdt,GetSessionToken, WithdrawApply, WithdrawFee,WithdrawLimit,WithdrawList, WithdrawDetail } |
| | | export default { GetUsdt, GetSessionToken, WithdrawApply, WithdrawFee, WithdrawLimit, WithdrawList, WithdrawDetail } |
| | | |