You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
544 B
12 lines
544 B
|
2 weeks ago
|
import axiosSettings from '@/utils/safeSettings/axiosSettings'
|
||
|
|
import securityTools from '@/utils/safeComponents'
|
||
|
|
import securitySettings from '@/utils/safeSettings/securitySettings'
|
||
|
|
const request = securityTools.request(axiosSettings, securitySettings).request;
|
||
|
|
// 企业能耗明细
|
||
|
|
export function companyDetail(data) {
|
||
|
|
return request({ url: `/sdke/isa/companyDetail`, method: 'get',params:data})
|
||
|
|
}
|
||
|
|
// 企业能耗预警
|
||
|
|
export function warningList(data) {
|
||
|
|
return request({ url: `/sdke/isa/warningList`, method: 'get',params:data})
|
||
|
|
}
|