ADD: 1、报告生成选择界面流程。
This commit is contained in:
51
frontend/src/api/result/interface/index.ts
Normal file
51
frontend/src/api/result/interface/index.ts
Normal file
@@ -0,0 +1,51 @@
|
||||
|
||||
export interface MonitorResult {
|
||||
/**
|
||||
* 监测点id
|
||||
*/
|
||||
monitorId: string;
|
||||
|
||||
/**
|
||||
* 监测点序号
|
||||
*/
|
||||
monitorNum: number;
|
||||
|
||||
/**
|
||||
* 总检测次数
|
||||
*/
|
||||
totalNum: number;
|
||||
|
||||
/**
|
||||
* 合格检测次数
|
||||
*/
|
||||
qualifiedNum: number;
|
||||
|
||||
/**
|
||||
* 不合格检测次数
|
||||
*/
|
||||
unQualifiedNum: number;
|
||||
|
||||
/**
|
||||
* 误差体系名称
|
||||
*/
|
||||
errorSysName: string;
|
||||
|
||||
/**
|
||||
* 检测结果
|
||||
*/
|
||||
checkResult: number;
|
||||
|
||||
/**
|
||||
* 哪次
|
||||
*/
|
||||
whichTime: string;
|
||||
|
||||
/**
|
||||
* 结论来源
|
||||
*/
|
||||
resultOrigin: string;
|
||||
/**
|
||||
* 来源类型
|
||||
*/
|
||||
resultType: string;
|
||||
}
|
||||
5
frontend/src/api/result/result.ts
Normal file
5
frontend/src/api/result/result.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import http from '@/api'
|
||||
|
||||
export const getMonitorResult = (devId: string) => http.post(`/result/getMonitorResult?devId=${devId}`)
|
||||
export const getMonitorDataSourceResult = (monitorId: string) =>
|
||||
http.get(`/result/getMonitorDataSourceResult?monitorId=${monitorId}`)
|
||||
Reference in New Issue
Block a user