| | |
| | | const userApi = { |
| | | agentcashlist: '/agent/cash/list.do', // 资金记录 |
| | | agentrechargelist: '/agent/recharge/list.do', // 充值记录 |
| | | agentwithdrawlist: '/agent/withdraw/list.do' // 出金记录 |
| | | agentwithdrawlist: '/agent/withdraw/list.do', // 出金记录 |
| | | withdrawlist: '/agent/withdraw/list.do', // 提现列表 |
| | | withdrawupdateState: '/agent/withdraw/updateState.do', // 提现列表修改状态 |
| | | } |
| | | |
| | | /** |
| | |
| | | data: qs.stringify(parameter) |
| | | }) |
| | | } |
| | | |
| | | export function withdrawlist(parameter) { |
| | | return request({ |
| | | url: userApi.withdrawlist, |
| | | method: 'post', |
| | | data: qs.stringify(parameter), |
| | | }) |
| | | } |
| | | |
| | | export function withdrawupdateState(parameter) { |
| | | return request({ |
| | | url: userApi.withdrawupdateState, |
| | | method: 'post', |
| | | data: qs.stringify(parameter), |
| | | }) |
| | | } |