[6.6.0]运营面板-与车相关类增加考试功能面板开关

This commit is contained in:
xuxinchao
2024-08-17 21:25:13 +08:00
parent 2c14e03911
commit 4d04f1e762
10 changed files with 80 additions and 38 deletions

View File

@@ -160,8 +160,8 @@ object CallerDevaToolsManager {
/**
* 展示考试车辆控制窗口
*/
fun showExamControlWindow(view: View){
devaToolsProviderApi?.showExamControlWindow(view)
fun showExamControlWindow(view: View,isShow: Boolean){
devaToolsProviderApi?.showExamControlWindow(view,isShow)
}
/**

View File

@@ -28,6 +28,13 @@ object CallerSopSettingManager: CallerBase<ISopSettingListener>() {
}
}
fun invokeExamControlListener(status: Boolean){
M_LISTENERS.forEach {
val listener = it.value
listener.onExamControlClickEvent(status)
}
}
/**
* 触发点云事件监听
*/