he wei
2024-04-15 c94f1afa786f297be86b01b49a641b2c0ad98b6e
1
2
3
4
5
6
7
8
9
10
11
12
import axios from "axios";
 
/**
 * 确认告警
 */
export const confirmAlarm = (id) => {
  return axios({
    method: "POST",
    url: "ckPowerDevAlarm/updateForConfirm",
    params: { id },
  });
};