油批
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.

22 lines
479 B

2 years ago
import request from "utils/axios.js";
// table
const getByPage = (params) => {
return request.postJson(
"/oil-finance/oilCompanyAccountReverse/getByPage",
params
);
};
//详情
const get = (query) => {
return request.get(`/oil-finance/oilCompanyAccountReverse/get/${query}`);
};
//详情
const getByCompanyId = (query) => {
return request.get(`/oil-finance/oilCompanyAccount/getByCompanyId/${query}`);
};
export default {
getByPage,
get,
getByCompanyId,
};