[dev_arch_opt_3.0]fix调试面板,点击打开历史,APP崩溃

This commit is contained in:
xuxinchao
2023-03-02 17:28:47 +08:00
parent 321876e1fd
commit 730ee8c8df
17 changed files with 81 additions and 506 deletions

View File

@@ -148,6 +148,13 @@ object CallerDevaToolsManager {
devaToolsProviderApi?.showBadCaseManagerView(context)
}
/**
* 工控机异常上报列表
*/
fun showReportListWindow(context: Context,isShow: Boolean){
devaToolsProviderApi?.showReportListWindow(context,isShow)
}
/**
* 下载指定包
*/

View File

@@ -165,19 +165,6 @@ object CallerHmiManager {
hmiProviderApi?.dismissDispatchDialog()
}
/**
* 展示工控机监控上报数据
* @param errorReportList 错误级别上报数据列表
* @param warningReportList 提醒级别上报数据列表
* @param reportLevel 1:error级别 2:warning级别
*/
fun showIPCReportWindow(
errorReportList: ArrayList<ReportEntity>,
warningReportList: ArrayList<ReportEntity>,
reportLevel: Int
) {
hmiProviderApi?.showIPCReportWindow(errorReportList, warningReportList, reportLevel)
}
fun showVideoDialog(infList: List<Infrastructure>) {
hmiProviderApi?.showVideoDialog(infList)