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.
39 lines
960 B
39 lines
960 B
9 months ago
|
import request from '@/utils/request'
|
||
|
export default {
|
||
|
getByPage(data) {
|
||
|
return request({
|
||
|
url: `/oil-finance/oilCompanyRechargePretreatment/getByPage`,
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
},
|
||
|
getCompanyTrading(data) {
|
||
|
console.log(data,'getCompanyTrading')
|
||
|
return request({
|
||
|
url: `/oil-finance/oilCompanyAccountReverse/getCompanyTrading`,
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
},
|
||
|
findDetail(id) {
|
||
|
return request({
|
||
|
url: `/oil-finance/oilCompanyRechargePretreatment/findDetail?id=${id}`,
|
||
|
method: 'get'
|
||
|
})
|
||
|
},
|
||
|
handleRejection(rejectRemark) { // 预处理驳回
|
||
|
return request({
|
||
|
url: `/oil-finance/oilCompanyRechargePretreatment/handleRejection`,
|
||
|
method: 'post',
|
||
|
data:rejectRemark
|
||
|
})
|
||
|
},
|
||
|
savePreprocessing(data) { // 预处理提交
|
||
|
return request({
|
||
|
url: `/oil-finance/oilCompanyRechargePretreatment/savePreprocessing`,
|
||
|
method: 'post',
|
||
|
data :data
|
||
|
})
|
||
|
},
|
||
|
}
|