You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
415 B
JavaScript
20 lines
415 B
JavaScript
import request from '@/utils/request'
|
|
import { parseStrEmpty } from "@/utils/ruoyi";
|
|
|
|
// 柱状图1
|
|
export function dnbCountingData(query) {
|
|
return request({
|
|
url: '/ems/report/analysis/energyMomAnalysisData',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询部门下拉树结构
|
|
export function deptTreeSelect() {
|
|
return request({
|
|
url: '/ems/base/monitorInfo/treeData/2',
|
|
method: 'get'
|
|
})
|
|
}
|