60 lines
1.1 KiB
JavaScript
60 lines
1.1 KiB
JavaScript
/*
|
|
* @Author: Do not edit
|
|
* @Date: 2023-10-21 11:50:46
|
|
* @LastEditTime: 2023-11-03 15:25:55
|
|
* @LastEditors: DY
|
|
* @Description:
|
|
*/
|
|
import request from '@/utils/request'
|
|
|
|
// 创建异常警告
|
|
export function createcoreAlarmLog(data) {
|
|
return request({
|
|
url: '/base/core-alarm-log/create',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 更新异常警告
|
|
export function updatecoreAlarmLog(data) {
|
|
return request({
|
|
url: '/base/core-alarm-log/update',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除异常警告
|
|
export function deletecoreAlarmLog(id) {
|
|
return request({
|
|
url: '/base/core-alarm-log/delete?id=' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 获得异常警告
|
|
export function getcoreAlarmLog(id) {
|
|
return request({
|
|
url: '/base/core-alarm-log/get?id=' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 获得警告分页
|
|
export function getcoreAlarmLogPage(query) {
|
|
return request({
|
|
url: '/base/core-alarm-log/page',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 获得所有列表
|
|
export function getcoreAlarmLogList(query) {
|
|
return request({
|
|
url: '/base/core-alarm-log/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
} |