12345678910111213141516171819202122 |
- import $http from "@/utils/request";
- /**
- * 获取火灾点位配置
- */
- export const getTagList = (data) => {
- return $http({
- method: "POST",
- url: `/fire/config/getList`,
- data,
- notShowLoading: false,
- headers: { "Content-Type": "application/json" }
- });
- };
- // 获取实时报警信息 type值同上
- export const getAlarmList = (data) =>
- $http({
- method: "POST",
- url: `/fire/alarm/getList`,
- data,
- notShowLoading: true,
- });
|