|
@@ -85,6 +85,8 @@ class WatchCallRecordsItemAdapter(val data: ArrayList<InteractionVO>) : BaseDele
|
|
|
}
|
|
|
|
|
|
if(itemData.actionType == TcpType.SOS.name){ //sos紧急呼叫 已处理
|
|
|
+ binding.sickbedTv.text = itemData.fromFrameFullName.substringBefore("-")
|
|
|
+ binding.nameTv.text = ""
|
|
|
binding.playTv.visibility = View.GONE
|
|
|
binding.projectTv.visibility = View.VISIBLE
|
|
|
binding.conductorNameTv.visibility = View.VISIBLE
|
|
@@ -144,6 +146,8 @@ class WatchCallRecordsItemAdapter(val data: ArrayList<InteractionVO>) : BaseDele
|
|
|
}
|
|
|
|
|
|
if(itemData.actionType == TcpType.SOS.name){ //sos紧急呼叫 未处理
|
|
|
+ binding.sickbedTv.text = itemData.fromFrameFullName.substringBefore("-")
|
|
|
+ binding.nameTv.text = ""
|
|
|
binding.playTv.visibility = View.GONE
|
|
|
binding.projectTv.visibility = View.VISIBLE
|
|
|
binding.projectTv.text = "SOS"
|