This commit is contained in:
2021-09-13 14:56:28 +08:00
commit ac0d6e9083
777 changed files with 90286 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
/*
* @Author: gtz
* @Date: 2021-03-21 15:14:22
* @LastEditors: gtz
* @LastEditTime: 2021-03-21 18:13:56
* @Description: file content
*/
import request from '@/utils/request'
// 获取告警列表
export function list(data) {
return request({
url: '/team/team-alarmHandle/page',
method: 'post',
data
})
}
// id获取告警
export function getInfo(data) {
return request({
url: '/team/team-alarmHandle/get',
method: 'post',
data
})
}
// 删除告警
export function del(data) {
return request({
url: '/team/team-alarmHandle/delete',
method: 'post',
data
})
}
// 新增告警
export function add(data) {
return request({
url: '/team/team-alarmHandle/add',
method: 'post',
data
})
}
// 更新告警
export function update(data) {
return request({
url: '/team/team-alarmHandle/update',
method: 'post',
data
})
}
// 获取员工列表
export function getWorkerList(data) {
return request({
url: '/basic/worker/page',
method: 'post',
data
})
}