This commit is contained in:
2023-05-24 15:37:21 +08:00
parent 8e1b1f485b
commit d0e15f6365
2 changed files with 32 additions and 12 deletions

View File

@@ -12,6 +12,10 @@ const getLikeRefineryAccount = (params = {}) => {
return request.postJson('/oil-refinery/xoilRefineryAccountRecord/getLikeRefineryAccount', params)
}
// 详情
const searchInfo = query => {
return request.get(`/oil-user/sysCustomerInfo/searchInfo/${query}`)
}
// 详情
const getById = query => {
return request.get(`oil-refinery/xoilRefineryAccountRecord/getById/${query}`)
}
@@ -20,5 +24,6 @@ export default {
getByPage,
getLikeByName,
getLikeRefineryAccount,
searchInfo,
getById
}