feat: 出库交接

This commit is contained in:
2025-12-04 17:17:01 +08:00
parent 22adce2964
commit 7f7ffcccac
6 changed files with 289 additions and 153 deletions

View File

@@ -16,5 +16,14 @@ class IntExpOutHandoverViewHolder(view: View) :
binding.bean = bean
binding.position = position
binding.executePendingBindings()
// 添加图标点击事件 - 切换选择状态
binding.ivIcon.setOnClickListener {
// 反转checked状态
bean.checked.set(!bean.checked.get())
// 立即更新UI图片自动切换
binding.executePendingBindings()
}
}
}