GATHERWARNING.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. import request from '@/utils/request'
  2. // 查询数据采集预警列表
  3. export function listGATHERWARNING(query) {
  4. return request({
  5. url: '/gather/WARNING/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询数据采集预警所有列表
  11. export function listAllGATHERWARNING(query) {
  12. return request({
  13. url: '/gather/WARNING/listAll',
  14. method: 'get',
  15. params: query
  16. })
  17. }
  18. // 查询数据采集预警详细
  19. export function getGATHERWARNING(id) {
  20. return request({
  21. url: '/gather/WARNING/getInfo/' + id,
  22. method: 'get'
  23. })
  24. }
  25. // 新增数据采集预警
  26. export function addGATHERWARNING(data) {
  27. return request({
  28. url: '/gather/WARNING/add',
  29. method: 'post',
  30. data: data
  31. })
  32. }
  33. // 修改数据采集预警
  34. export function updateGATHERWARNING(data) {
  35. return request({
  36. url: '/gather/WARNING/edit',
  37. method: 'post',
  38. data: data
  39. })
  40. }
  41. // 删除数据采集预警
  42. export function delGATHERWARNING(id) {
  43. return request({
  44. url: '/gather/WARNING/remove/' + id,
  45. method: 'get'
  46. })
  47. }
  48. // 处理预警 解除
  49. export function deal(id) {
  50. return request({
  51. url: '/gather/WARNING/deal/' + id,
  52. method: 'get'
  53. })
  54. }
  55. // 取消预警
  56. export function cancel(id) {
  57. return request({
  58. url: '/gather/WARNING/cancel/' + id,
  59. method: 'get'
  60. })
  61. }