1:修改bug

This commit is contained in:
2025-12-04 20:56:30 +08:00
parent 56bb994377
commit c632692982
13 changed files with 217 additions and 60 deletions

View File

@@ -19,7 +19,7 @@ class TotalRevenueAdapter : BaseQuickAdapter<FamilyEarnings?, BaseViewHolder>(R.
helper.setText(R.id.tv_name, item?.nickname)
helper.setText(R.id.tv_gift_name, item?.gift_name)
helper.setText(R.id.tv_gift_price, item?.gift_price)
helper.setText(R.id.tv_time, "时间"+TimeUtils.getDateToStringNoZ(item?.createtime?:0L))
helper.setText(R.id.tv_time, "时间"+TimeUtils.getDateToStringNoZ(item?.createtime!!*1000))
helper.setText(R.id.tv_jb, item?.earnings)
}
}