数据报表查询改为以站点为单位

This commit is contained in:
zhangyue 2026-07-27 15:02:06 +08:00
parent 06a4324b90
commit 7b1e701ee3
2 changed files with 683 additions and 652 deletions

View File

@ -6,6 +6,7 @@ enum Api {
dataSummary = '/appmana/dataCenter/dataSummary', dataSummary = '/appmana/dataCenter/dataSummary',
deviceAlertStatistic = '/appmana/dataCenter/deviceAlertStatistic', deviceAlertStatistic = '/appmana/dataCenter/deviceAlertStatistic',
deviceList = '/appmana/dataCenter/deviceList', deviceList = '/appmana/dataCenter/deviceList',
getStationList = '/appmana/survStationInfo/getStationList',
} }
@ -36,3 +37,9 @@ export const getAllDeviceList = (params) => defHttp.get({ url: Api.deviceList, p
* @param params * @param params
*/ */
export const getDeviceAlertStatistic = (params) => defHttp.post({ url: Api.deviceAlertStatistic, params }, { isTransformResponse: false }); export const getDeviceAlertStatistic = (params) => defHttp.post({ url: Api.deviceAlertStatistic, params }, { isTransformResponse: false });
/**
*
* @param params
*/
export const getStationList = (params) => defHttp.get({ url: Api.getStationList, params }, { isTransformResponse: false });

File diff suppressed because it is too large Load Diff