/** * 应急接口 */ import request from '@/utils/request' // 场所点位列表 export function getPlacePointList(data) { return request({ url: 'yjzh-gktj/csyj/wxss', method: 'post', data, }) } // 人员 export function getPersonPointList(data) { return request({ url: 'yjzh-gktj/csyj/yydwlb', method: 'post', data, }) } // 设备 export function getDevicePointList(data) { return request({ url: 'yjzh-gktj/csyj/sbdwlb', method: 'post', data, }) } // 资源 export function getResourcePointList(data) { return request({ url: 'yjzh-gktj/csyj/zydwlb', method: 'post', data, }) } // 车辆 export function getCarPointList(data) { return request({ url: 'yjzh-gktj/csyj/cldwlb', method: 'post', data, }) } // 事件 export function getEventList(data) { return request({ url: 'yjzh-gktj/csyj/jcsjzs', method: 'post', data, }) }