This commit is contained in:
xiaozhiyong
2023-02-14 13:35:22 +08:00
parent 3796514d32
commit 308362a143
11 changed files with 679 additions and 120 deletions

View File

@@ -0,0 +1,22 @@
import request from "utils/axios.js";
// table
const getByPage = (params) => {
return request.postJson(
"/oil-refinery/xoilRefineryAccount/getByPage",
params
);
};
// 新增
const save = (params) => {
return request.postJson("/oil-refinery/xoilRefineryAccount/save", params);
};
// 修改
const update = (params) => {
return request.postJson("/oil-refinery/xoilRefineryAccount/update", params);
};
export default {
getByPage,
save,
update,
};