[6.7.0] fix bug
This commit is contained in:
@@ -19,14 +19,15 @@ object CallerOchFunctionCallManager : CallerBase<IOchFunctionCall>() {
|
||||
}
|
||||
|
||||
// 车的类型
|
||||
var carModel:String? by Delegates.observable(null) { _, oldValue, newValue ->
|
||||
private var carModel:String? by Delegates.observable(null) { _, oldValue, newValue ->
|
||||
if (oldValue != newValue) {
|
||||
M_LISTENERS.forEach {
|
||||
it.value.invokeCarMode(carModel)
|
||||
}
|
||||
}
|
||||
}
|
||||
var plateNumber:String? by Delegates.observable(null) { _, oldValue, newValue ->
|
||||
|
||||
private var plateNumber:String? by Delegates.observable(null) { _, oldValue, newValue ->
|
||||
if (oldValue != newValue) {
|
||||
M_LISTENERS.forEach {
|
||||
it.value.invokePlateNumber(plateNumber)
|
||||
|
||||
Reference in New Issue
Block a user