ClusterResultApi.js
516 Bytes
import axiosInstance from "@/Request/MatchAxiosInstance"
import {filterEmptyValueInObject} from "@/PublicUtil/PublicUtil"
class ClusterResultApi {
getPersonDetail(data) {
return axiosInstance.request(
{
method: 'GET',
url: `/matchRecord/personDetail`,
params: filterEmptyValueInObject(
data
)
}
)
}
}
const clusterResultApi = new ClusterResultApi()
export default clusterResultApi