[6.7.0]
[fea] [暴露orderId]
This commit is contained in:
@@ -8,6 +8,7 @@ import com.mogo.eagle.core.function.api.och.toolkit.ToolKitCustomItemAddParam
|
||||
import com.mogo.eagle.core.function.api.och.toolkit.ToolKitDefaultItemAddParam
|
||||
import com.mogo.eagle.core.function.call.datacenter.CallerDataCenterBizManager
|
||||
import com.mogo.eagle.core.function.call.hmi.CallerHmiManager
|
||||
import kotlin.properties.Delegates
|
||||
|
||||
/**
|
||||
* 鹰眼底层提供给 Och业务层 调用的接口
|
||||
@@ -16,6 +17,12 @@ object CallerEagleBaseFunctionCall4OchManager : IEagleBaseFunctionCall4Och {
|
||||
|
||||
const val TAG = "CallerEagleBaseFunctionCall4OchManager"
|
||||
|
||||
private var _autopilotOrderId: String? by Delegates.observable(null) { _, oldValue, newValue ->
|
||||
if (oldValue != newValue) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 注册 工具箱 item点击事件监听 (默认样式item的点击事件监听,自定义样式的item的点击交给view自己处理)
|
||||
@@ -103,4 +110,9 @@ object CallerEagleBaseFunctionCall4OchManager : IEagleBaseFunctionCall4Och {
|
||||
override fun setOchLoginNo(loginNo: String?) {
|
||||
CallerDataCenterBizManager.notifyLoginInfo(loginNo)
|
||||
}
|
||||
|
||||
override fun setOchAutopilotOrderId(orderId: String?) {
|
||||
super.setOchAutopilotOrderId(orderId)
|
||||
_autopilotOrderId = orderId
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user