1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| /* 电池告警参数设置 */
| import axios from "../axios";
|
|
| /* 修改
| json={"alm_name":"容量告警告警","alm_id":"119010","alm_high_coe":"3","alm_high_level":"3",
| "alm_low_coe":"0.8","alm_low_level":"2","alm_high_en":0,"alm_low_en":1}
| */
| export const settingEdit = (data) => {
| return axios({
| method: "post",
| url: "Alarm_paramAction!update",
| data: "json=" + JSON.stringify(data)
| })
| }
|
| /* 查询
| json={"alm_id":"0"}
| */
| export const settingSearch = (data) => {
| return axios({
| method: "post",
| url: "Alarm_paramAction!serchByCondition",
| data: "json=" + JSON.stringify(data)
| })
| }
|
|