This commit is contained in:
xiaozhiyong
2024-03-15 08:51:39 +08:00
parent eb174869a4
commit 895d23dd5c
13 changed files with 1197 additions and 115 deletions

View File

@@ -0,0 +1,46 @@
import request from '@/utils/request'
export default {
// 福佑
fuyouRefund(data) {
return request({
url: '/oil-site/fuYou/refund',
method: 'post',
data: data
})
},
//智猪 长久 牧原 新希望(黑龙江中锐)
orderRefund(data) {
return request({
url: '/oil-site/openPlatform/orderRefund',
method: 'post',
data: data
})
},
//顺丰
sfRefund(data) {
return request({
url: '/oil-site/sf/refund',
method: 'post',
data: data
})
},
// 安能
refund(id) {
return request({
url: `/oil-finance/oilOrderInfo/refund/${id}`,
method: 'get'
})
},
// 安途 圆通(易管油)
unifiedRefund(data) {
return request({
url: '/oil-site/xoil/unifiedRefund',
method: 'post',
data: data
})
},
}