Files
wx_oms/api/financialCenter/business.js

20 lines
338 B
JavaScript
Raw Normal View History

2023-05-06 15:45:59 +08:00
import request from '@/utils/request'
export default {
2023-11-07 16:14:20 +08:00
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
})
},
2023-05-06 15:45:59 +08:00
}