CustomerMatchListApi.js
517 Bytes
import axiosInstance from "@/Request/MatchAxiosInstance"
import {filterEmptyValueInObject} from "@/PublicUtil/PublicUtil"
class CustomerMatchListApi {
getList(data) {
return axiosInstance.request(
{
method: 'GET',
url: `/matchRecord/list`,
params: filterEmptyValueInObject(
data
)
}
)
}
}
const customerMatchListApi = new CustomerMatchListApi()
export default customerMatchListApi