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