12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
|
|
import http from "@/api";
|
||
|
|
const BASEURL = import.meta.env.VITE_API_URL;
|
||
|
|
|
||
|
|
// 获取车辆通过信息
|
||
|
|
export const getCarPassRecordApi = (params: {}) => {
|
||
|
|
return http.post(BASEURL + `/xmgl/carPassRecord/list`, params);
|
||
|
|
};
|
||
|
|
// 获取出入场记录
|
||
|
|
export const getEntryAndExitRecordsApi = (params: {}) => {
|
||
|
|
return http.post(BASEURL + `/xmgl/carPassRecord/getEntryAndExitRecordsToday`, params);
|
||
|
|
};
|