🎨 新增提现管理功能
This commit is contained in:
20
src/api/user/with.js
Normal file
20
src/api/user/with.js
Normal file
@@ -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
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user