This commit is contained in:
zk
2023-12-11 10:19:17 +08:00
parent e576d20c00
commit bc15167485
6 changed files with 70 additions and 516 deletions
@@ -0,0 +1,11 @@
import { get } from '/@/api/request.ts';
export enum Api {
allList = '/health-emergency/emergency/tblAmbulanceGps/getAllList',
getAmbulanceList = '/health-emergency/emergency/tblAmbulanceGps/getAmbulanceList',
}
// 获取所有资源
export const getAllList = (params) => get(Api.allList, params);
//获取救护车GPS信息
export const getAmbulanceList = (params) => get(Api.getAmbulanceList, params);