数据报表查询改为以站点为单位
This commit is contained in:
parent
06a4324b90
commit
7b1e701ee3
|
|
@ -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
Loading…
Reference in New Issue