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.
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
import request from '@/utils/request'
|
|
import { parseStrEmpty } from "@/utils/ruoyi";
|
|
import qs from 'qs';
|
|
|
|
// 查询用户列表
|
|
export function listUser(data) {
|
|
return request({
|
|
url: '/ems/report/analysis/energyStatisticsData',
|
|
method: 'post',
|
|
data:data
|
|
// data: qs.stringify(data),
|
|
// contentType:'application/x-www-form-urlencoded',
|
|
//formdata:true,
|
|
})
|
|
}
|
|
// 查询底部列表
|
|
export function instantLis(data) {
|
|
return request({
|
|
url: '/ems/record/dnbInstant/instantList',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
|
|
// 真查询部门下拉树结构
|
|
export function treeDat() {
|
|
return request({
|
|
url: '/ems/base/monitorInfo/treeData/2',
|
|
method: 'get'
|
|
})
|
|
}
|
|
//
|
|
// // 一键秒表
|
|
// export function editMeterReading(data) {
|
|
// return request({
|
|
// url: '/energy/config/editMeterReading',
|
|
// method: 'post',
|
|
// data: data,
|
|
// //contentType:'application/x-www-form-urlencoded',
|
|
// })
|
|
// }
|
|
export function previewPolyline(params) {
|
|
return request({
|
|
url: '/ems/report/board/previewPolyline',
|
|
method: 'get',
|
|
params: params
|
|
})
|
|
}
|