| | |
| | | import androidx.recyclerview.widget.RecyclerView; |
| | | |
| | | import com.hdl.photovoltaic.R; |
| | | import com.hdl.photovoltaic.config.UserConfigManage; |
| | | import com.hdl.photovoltaic.enums.DebugStatus; |
| | | import com.hdl.photovoltaic.enums.DeliverStatus; |
| | | import com.hdl.photovoltaic.enums.PowerStationStatus; |
| | |
| | | if (houseIdBean.getDebugStatus().equals(DebugStatus.Debugging)) { |
| | | //未交付完要显示删除按钮 |
| | | holder.home_del_ll.setVisibility(View.VISIBLE); |
| | | holder.del_home_iv.setImageResource(R.drawable.del_home); |
| | | } |
| | | if (houseIdBean.getDebugStatus().equals(DebugStatus.WAIT_DELIVERED)) { |
| | | //更改成回滚图标 |
| | |
| | | } |
| | | }); |
| | | |
| | | if (UserConfigManage.getInstance().isTourist_mode()) { |
| | | holder.home_del_ll.setVisibility(View.GONE); |
| | | } |
| | | } |
| | | |
| | | @Override |