在星链oms添加功能
1.充值功能-对应运营管理系统中企业充值预处理功能 3.查询油价功能-对应运营管理系统中油价管理功能 4.公司管理-客户管理 开户维护银行信息功能
This commit is contained in:
38
api/enterpriseRecharge.js
Normal file
38
api/enterpriseRecharge.js
Normal file
@@ -0,0 +1,38 @@
|
||||
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
|
||||
})
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user