订单,提现功能调整
This commit is contained in:
@@ -40,10 +40,37 @@ const balance = data => {
|
||||
})
|
||||
}
|
||||
|
||||
// 奖金提现前置
|
||||
const withdrawsCreate = () => {
|
||||
return request({
|
||||
url: 'withdraws/index/create'
|
||||
})
|
||||
}
|
||||
|
||||
// 奖金提现申请
|
||||
const withdraws = data => {
|
||||
return request({
|
||||
url: 'withdraws/index',
|
||||
method: 'POST',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 提现记录
|
||||
const withdrawsLog = data => {
|
||||
return request({
|
||||
url: 'withdraws/index',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export {
|
||||
score,
|
||||
log,
|
||||
cash,
|
||||
balance
|
||||
balance,
|
||||
withdrawsCreate,
|
||||
withdraws,
|
||||
withdrawsLog
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user