finance.js
994 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import request from '@/utils/request'
//* ******************** 财务统计 *********************
// 财务统计数据查询
export function getFinanceCount(data) {
return request({
url: '/finance/getFinanceCount',
method: 'post',
data
})
}
// 提现明细查询
export function getWithdrawalDetails(data) {
return request({
url: '/finance/getWithdrawalDetails',
method: 'post',
data
})
}
// 查询绑定银行卡
export function getBank(data) {
return request({
url: '/finance/getBank',
method: 'post',
data
})
}
// 提现申请
export function withdrawal(data) {
return request({
url: '/finance/withdrawal',
method: 'post',
data
})
}
// 提现明细查询
export function getDetails(data) {
return request({
url: '/finance/getDetails',
method: 'post',
data
})
}
// 保证金查询
export function getAllBond(data) {
return request({
url: '/finance/getAllBond',
method: 'post',
data
})
}