南昌市物联网技防平台-前端
shuishen
2021-04-23 8d837b97ffb27e4e26f067c1febde353bfdf91cf
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import request from '@/router/axios';
 
export const getdataL = (data) => {
  return request({
    url: '/api/blade-jfpts/equipment/equipment/pageDept',
    method: 'get',
    params: {
      ...data
    }
  })
}
 
export const getGalarm = (dataG) => {
  return request({
    url: '/api/blade-jfpts/alarm/alarm/page',
    method: 'get',
    params: {
      ...dataG
    }
  })
}
 
export const getnum = (dataM) => {
  return request({
    url: '/api/blade-jfpts/alarm/alarm/queryYearAlarm',
    method: 'get',
    params: {
      ...dataM
    }
  })
}
 
export const getImg = (dataImg,methods) => { 
  return request({
    url: '/api/blade-jfpts/depl/selectInfo',
    method: methods,
    params: {
      ...dataImg
    }
  })
}