task#10339,调度app接口对接
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import request from '@/utils/http'
|
||||
|
||||
//待报销列表
|
||||
//司机app待报销列表
|
||||
export function waitReimburseList(data) {
|
||||
return request({
|
||||
url: '/driverApp/reimburse/waitReimburseList',
|
||||
@ -9,7 +9,7 @@ export function waitReimburseList(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
// 提交报销批次
|
||||
// 司机app提交报销批次
|
||||
export function submitReimburseBatch(data) {
|
||||
return request({
|
||||
url: '/driverApp/reimburse/submitReimburseBatch',
|
||||
@ -18,7 +18,7 @@ export function submitReimburseBatch(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
// 已报销/报销失败列表
|
||||
// 司机app已报销/报销失败列表
|
||||
export function reimbursedList(data) {
|
||||
return request({
|
||||
url: '/driverApp/reimburse/reimbursedList',
|
||||
@ -26,4 +26,57 @@ export function reimbursedList(data) {
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
}
|
||||
//调度App-报销批次数量
|
||||
export function reimburseBatchCount() {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/reimburse/reimburseBatchCount',
|
||||
method:'POST',
|
||||
// contentType: 'application/x-www-form-urlencoded',
|
||||
})
|
||||
}
|
||||
// 调度App-报销批次审核
|
||||
export function reimburseBatchList(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/reimburse/reimburseBatchList',
|
||||
method:'POST',
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
//调度App-报销批次订单数量
|
||||
export function reimburseBatchOrderCount(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/reimburse/reimburseBatchOrderCount',
|
||||
method:'POST',
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
//调度App-报销批次订单列表
|
||||
export function reimburseBatchOrderList(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/reimburse/reimburseBatchOrderList',
|
||||
method:'POST',
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
//调度App-报销订单详情
|
||||
export function reimburseOrderDetail(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/reimburse/reimburseOrderDetail',
|
||||
method:'POST',
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
//调度App-报销订单审核
|
||||
export function reimburseOrderAudit(data) {
|
||||
return request({
|
||||
url: '/supplierAppV2/dispatchApp/reimburse/reimburseOrderAudit ',
|
||||
method:'POST',
|
||||
contentType: 'application/json',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user