32 lines
871 B
TypeScript
32 lines
871 B
TypeScript
import request from '@/utils/request'
|
|
|
|
// 提现申请列表
|
|
export function apiWithdrawLists(params: any) {
|
|
return request.get({ url: '/finance.withdraw/index', params })
|
|
}
|
|
|
|
// 添加提现申请
|
|
export function apiWithdrawAdd(params: any) {
|
|
return request.post({ url: '/finance.withdraw/add', params })
|
|
}
|
|
|
|
// 编辑提现申请
|
|
export function apiWithdrawEdit(params: any) {
|
|
return request.post({ url: '/finance.withdraw/edit', params })
|
|
}
|
|
|
|
// 删除提现申请
|
|
export function apiWithdrawDelete(params: any) {
|
|
return request.post({ url: '/finance.withdraw/delete', params })
|
|
}
|
|
|
|
// 提现申请详情
|
|
export function apiWithdrawDetail(params: any) {
|
|
return request.get({ url: '/finance.withdraw/detail', params })
|
|
}
|
|
|
|
//提现审核
|
|
export function withdrawAudit(params?: any) {
|
|
return request.post({ url: '/finance.withdraw/audit', params })
|
|
}
|