3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import request from '@/utils/request'
// 用户提现申请查询
export function applicationGetAll(data) {
return request({
url: '/buyer_withdrawal/getAll',
method: 'post',
data
})
}
// 用户提现申请详情查询
export function applicationGetById(data) {
return request({
url: '/buyer_withdrawal/getById',
method: 'post',
data
})
}
// 用户提现申请处理
export function applicationHandle(data) {
return request({
url: '/buyer_withdrawal/handle',
method: 'post',
data
})
}
|