Files
wx_oms/api/financialCenter/business.js
xiaozhiyong d4d20013f0 更新
2023-11-07 16:14:20 +08:00

20 lines
338 B
JavaScript

import request from '@/utils/request'
export default {
getByPage(data) {
return request({
url: '/oil-finance/oilCompanyAccount/getByPage',
method: 'post',
data: data
})
},
getByPageRecharge(data) {
return request({
url: '/oil-finance/oilCompanyAccountReverse/getByPage',
method: 'post',
data: data
})
},
}