23 lines
430 B
JavaScript
23 lines
430 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function loadCenterStatistics() {
|
|
return request({
|
|
url: '/loadcenter/LoadCenterStatistics',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function getVehicleList() {
|
|
return request({
|
|
url: '/loadcenter/GetVehicleList',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function getMqttServerList(sort) {
|
|
return request({
|
|
url: '/loadcenter/GetMqttServerList?sort=' + sort,
|
|
method: 'get'
|
|
})
|
|
}
|