[6.7.0] fix bug

This commit is contained in:
EmArrow
2024-09-23 19:32:09 +08:00
parent 7b707e8bc9
commit e4f281cafc
10 changed files with 43 additions and 132 deletions

View File

@@ -37,11 +37,6 @@ object CallerOchFunctionCallManager : CallerBase<IOchFunctionCall>() {
}
}
private var _ochCallFuncation:IOchCommonFunctionCall?=null
val ochCallFuncation:IOchCommonFunctionCall?
get() = _ochCallFuncation
/**
* 注册 工具箱 item点击事件监听 (默认样式item的点击事件监听自定义样式的item的点击交给view自己处理)
*/
@@ -52,6 +47,12 @@ object CallerOchFunctionCallManager : CallerBase<IOchFunctionCall>() {
CallerHmiManager.registerToolKitDefaultItemClickListener(tag, listener)
}
fun invokeLoginOut(){
M_LISTENERS.forEach {
it.value.LoginOut()
}
}
// 车型 E70 H9 B1 B2 M1 金旅牌XML6606JEVY0(小巴车) NJL6450ICEV(小巴) BJ5122TXSEV-H1(环卫车)
fun setOchCarModel(carModel: Carmodel) {
this.carModel = carModel
@@ -61,7 +62,4 @@ object CallerOchFunctionCallManager : CallerBase<IOchFunctionCall>() {
this.plateNumber = plateNumber
}
fun setOchCommonFunctionCall(caller: IOchCommonFunctionCall){
this._ochCallFuncation = caller
}
}