This commit is contained in:
xiaozhiyong
2023-02-23 17:08:13 +08:00
parent 70d54bcfa5
commit b66f88ac17
3 changed files with 74 additions and 60 deletions

View File

@@ -23,11 +23,15 @@ const liekQuery = (query) => {
const save = (params) => {
return request.postJson("/oil-user/oilCompanyInfo/save", params);
};
// 用户详情
const getInfo = (id) => {
return request.get(`/oil-user/oilCompanyInfo/get/${id}`);
};
export default {
getByPage,
getCompanyAccountRecord,
update,
liekQuery,
save,
getInfo,
};