综合查询

This commit is contained in:
白菜
2025-09-04 15:37:15 +08:00
parent 8808b25682
commit 243724c9a6
2 changed files with 163 additions and 54 deletions

24
src/api/ems/search.js Normal file
View 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
})
}