南昌市物联网技防平台-学校版前端
zengh
2021-06-03 b298eeb4996296cb4caf666bf9de72b82ca4fa7b
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
42
43
44
45
46
47
48
49
50
51
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
    }
  })
}
 
export const getVideo = (deviceCode) => { 
  return request({
    url: 'https://web.byisf.com:18000/GetPlayUrl',
    method: 'get',
    params: {
      ...deviceCode
    }
  })
}