123456789101112131415161718192021222324252627282930313233343536373839 |
- import $http from '@/utils/request'
- /**
- * 获取周界配置
- */
- export const getTagList = data => {
- return $http({
- method: 'POST',
- // url: '/JGYT/alarm/getTagList',
- url: '/Positioning/Map/GetLaserPtz', // 新接口 按场站获取云台配置
- data,
- notShowLoading: false,
- })
- }
- // 获取实时报警信息 type值同上
- export const getAlarmList = data =>
- $http({
- method: 'POST',
- url: `/JGYT/alarm/getAlarmList`,
- data,
- notShowLoading: true,
- })
- // 获取激光云台设备列表
- export const getJGYTList = data =>
- $http({
- method: 'POST',
- url: `/Leak/LaserPtz/Config/GetList`,
- data,
- notShowLoading: true,
- })
- // 获取激光云台报警数据列表
- export const getJGYTAlarmList = data =>
- $http({
- method: 'POST',
- url: `/Leak/LaserPtz/Alarm/GetList`,
- data,
- notShowLoading: true,
- })
|