feat: 出港运抵

This commit is contained in:
2025-12-04 18:59:54 +08:00
parent d67c5edb19
commit 6073010531
11 changed files with 866 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
package com.lukouguoji.gjc.holder
import android.view.View
import com.lukouguoji.gjc.databinding.ItemIntExpArriveBinding
import com.lukouguoji.module_base.base.BaseViewHolder
import com.lukouguoji.module_base.bean.GjcMaWb
/**
* 国际出港-出港运抵 列表项ViewHolder
*/
class IntExpArriveViewHolder(view: View) :
BaseViewHolder<GjcMaWb, ItemIntExpArriveBinding>(view) {
override fun onBind(item: Any?, position: Int) {
val bean = getItemBean(item) ?: return
binding.bean = bean
binding.position = position
binding.executePendingBindings()
// 添加图标点击事件 - 切换选择状态
binding.ivIcon.setOnClickListener {
// 反转checked状态
bean.checked.set(!bean.checked.get())
// 立即更新UI图片自动切换
binding.executePendingBindings()
}
}
}