From ebbb475be65514bc7cb2e27f002bcaa734cd594c Mon Sep 17 00:00:00 2001 From: wuhui_zzw <1760308791@qq.com> Date: Sun, 7 Apr 2024 18:42:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=EF=BC=9A=E4=BD=A3=E9=87=91?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B4=A6=E5=8F=B7=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/user.js | 22 + components/cash/index.vue | 4 +- pages.json | 6 + pages/users/user_cash/account_list.vue | 698 +++++++++++++++++++++++++ pages/users/user_cash/index.vue | 677 +++++++----------------- 5 files changed, 930 insertions(+), 477 deletions(-) create mode 100644 pages/users/user_cash/account_list.vue 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 @@ - 选择提现方式 + 选择账号类型