diff --git a/api/user.js b/api/user.js index ff780d8..7ea3bfd 100644 --- a/api/user.js +++ b/api/user.js @@ -739,3 +739,25 @@ export function inviteCodePayment(data) { export function inviteCodeConfirmUse(data) { return request.get("sVip/inviteUse", data); } +// 提现账号管理 - 获取列表 +export function withdrawalAccountList() { + return request.get("withdrawalAccount/list"); +} +// 提现账号管理 - 提交编辑 +export function withdrawalAccountEdit(data) { + return request.post("withdrawalAccount/edit", data); +} +// 提现账号管理 - 删除 +export function withdrawalAccountDel(id) { + return request.post(`withdrawalAccount/del/${id}`); +} + + + + + + + + + + diff --git a/components/cash/index.vue b/components/cash/index.vue index f9772a7..72133a9 100644 --- a/components/cash/index.vue +++ b/components/cash/index.vue @@ -2,7 +2,7 @@ - 选择提现方式 + 选择账号类型