You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
768 B
46 lines
768 B
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 |
|
}) |
|
}, |
|
|
|
|
|
|
|
}
|
|
|