IPC Report

异常上报弹窗改版,根据Result区分出Error和Warning
This commit is contained in:
xuxinchao
2022-07-25 18:08:24 +08:00
parent d4371e3d1a
commit 4bf8e21544
9 changed files with 159 additions and 75 deletions

View File

@@ -243,9 +243,11 @@ interface IMoGoWaringProvider : IMoGoHmiViewProxy {
/**
* 展示工控机监控上报数据
* @param reportList 上报数据列表
* @param errorReportList 错误级别上报数据列表
* @param warningReportList 提醒级别上报数据列表
* @param reportLevel 1:error级别 2:warning级别
*/
fun showIPCReportWindow(reportList: ArrayList<ReportEntity>)
fun showIPCReportWindow(errorReportList: ArrayList<ReportEntity>,warningReportList: ArrayList<ReportEntity>,reportLevel: Int)
fun showVideoDialog(url: String, isFlvUrl: Boolean)
}