[6.6.0]退出登录时检查上报类型选择弹窗是否是打开状态,如果是打开状态,则关闭

This commit is contained in:
xuxinchao
2024-09-10 17:48:24 +08:00
parent ae8f0be700
commit 3a6987593e

View File

@@ -701,4 +701,14 @@ internal object BadCaseManager : LifecycleEventObserver, IMoGoAutopilotRecordLis
BadCaseConfig.tenantId = tenantId
}
/**
* 监听登录登出状态
*/
override fun onLoginStatusUpdate(isLogin: Boolean) {
if(reportTypeWindow?.getWindowShowStatus() == true){
reportTypeWindow?.hideFloatWindow()
reportTypeWindow = null
}
}
}