This commit is contained in:
GGJ
2025-01-09 19:02:44 +08:00
commit 92e7a7a5eb
2943 changed files with 1152283 additions and 0 deletions

31
src/api/statistics.js Normal file
View File

@@ -0,0 +1,31 @@
import request from '@/utils/request'
//暂降原因
export function getStatisticData(data) {
return request({
url: '/event-boot/areaAnalysis/getEventReason',
method: 'post',
data
})
}
export function getVoltageToleranceCurveData(data) {
return request({
url: '/event-boot/areaAnalysis/getVoltageToleranceCurve',
method: 'post',
data
})
}
export function dictDataCache() {
return request({
url: '/system-boot/dictType/dictDataCache',
method: 'get',
//data: data
})
}
//暂降类型
export function getTypeData() {
return request({
url: '/system-boot/statistics/getType',
method: 'get',
})
}