From 36921300df78daf95310c50c49c7cd25fa4349bb Mon Sep 17 00:00:00 2001 From: Echo <1711788888@qq.com> Date: Wed, 10 Sep 2025 02:32:11 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E6=96=B0=E5=A2=9E=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/user/with.js | 20 ++ src/view/user/user/with.vue | 676 ++++++++++++++++++++++++++++++++++++ 2 files changed, 696 insertions(+) create mode 100644 src/api/user/with.js create mode 100644 src/view/user/user/with.vue diff --git a/src/api/user/with.js b/src/api/user/with.js new file mode 100644 index 0000000..81478ff --- /dev/null +++ b/src/api/user/with.js @@ -0,0 +1,20 @@ +import service from '@/utils/request' + +// list 获取提现列表 +export const list = (params) => { + return service({ + url: '/sys/with/list', + method: 'get', + params + }) +} + +// update 更新提现状态 +export const update = (data) => { + return service({ + url: '/sys/with', + method: 'put', + data + }) +} + diff --git a/src/view/user/user/with.vue b/src/view/user/user/with.vue new file mode 100644 index 0000000..47886c2 --- /dev/null +++ b/src/view/user/user/with.vue @@ -0,0 +1,676 @@ + + + + + \ No newline at end of file