[fea]
[退出登录链条]
This commit is contained in:
yangyakun
2024-09-23 15:16:53 +08:00
parent bb1f2279d5
commit 91389d308a
5 changed files with 67 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package com.mogo.eagle.core.function.call.och
import com.mogo.eagle.core.function.api.och.IOchCommonFunctionCall
import com.mogo.eagle.core.function.api.och.IOchFunctionCall
import com.mogo.eagle.core.function.api.och.IToolKitItemClickListener
import com.mogo.eagle.core.function.call.base.CallerBase
@@ -35,6 +36,11 @@ object CallerOchFunctionCallManager : CallerBase<IOchFunctionCall>() {
}
}
private var _ochCallFuncation:IOchCommonFunctionCall?=null
val ochCallFuncation:IOchCommonFunctionCall?
get() = _ochCallFuncation
/**
* 注册 工具箱 item点击事件监听 (默认样式item的点击事件监听自定义样式的item的点击交给view自己处理)
*/
@@ -54,4 +60,8 @@ object CallerOchFunctionCallManager : CallerBase<IOchFunctionCall>() {
fun setPlateNumber(plateNumber:String?){
this.plateNumber = plateNumber
}
fun setOchCommonFunctionCall(caller: IOchCommonFunctionCall){
this._ochCallFuncation = caller
}
}