综合查询
This commit is contained in:
24
src/api/ems/search.js
Normal file
24
src/api/ems/search.js
Normal file
@ -0,0 +1,24 @@
|
||||
import request from '@/utils/request'
|
||||
// 获取设备列表
|
||||
export function getAllDeviceCategory() {
|
||||
return request({
|
||||
url: '/ems/generalQuery/getAllDeviceCategory',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
// 点位列表
|
||||
export function pointFuzzyQuery(data) {
|
||||
return request({
|
||||
url: '/ems/generalQuery/pointFuzzyQuery',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 图表
|
||||
export function getPointValueList(data) {
|
||||
return request({
|
||||
url: '/ems/generalQuery/getPointValueList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user