修改已审核的bug
This commit is contained in:
parent
fb44ae5399
commit
04cb9c51fc
@ -40,8 +40,15 @@ public class PoiTaskAdapter extends RecyclerView.Adapter<PoiTaskAdapter.ViewHold
|
|||||||
HasSubmitBean.BodyBean.ListBean listBean = listBeans.get(position);
|
HasSubmitBean.BodyBean.ListBean listBean = listBeans.get(position);
|
||||||
holder.tvnName.setText(listBean.getName()+"");
|
holder.tvnName.setText(listBean.getName()+"");
|
||||||
holder.tvTime.setText(listBean.getCreateTime()+"");
|
holder.tvTime.setText(listBean.getCreateTime()+"");
|
||||||
holder.tvMassage.setText(listBean.getAuditMsg()+"");
|
if (listBean.getAuditStatus()==0){
|
||||||
holder.tvMany.setText(listBean.getAuditStatus()+"");
|
holder.tvAuditStatus.setText("审核通过");
|
||||||
|
}else if (listBean.getAuditStatus() == 1){
|
||||||
|
holder.tvAuditStatus.setText("审核未通过");
|
||||||
|
}else if (listBean.getAuditStatus() == -1){
|
||||||
|
holder.tvAuditStatus.setText("待审核");
|
||||||
|
}
|
||||||
|
holder.tvMassage.setText(listBean.getAuditMsg());
|
||||||
|
holder.tvMany.setText("¥0.0");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -50,14 +57,15 @@ public class PoiTaskAdapter extends RecyclerView.Adapter<PoiTaskAdapter.ViewHold
|
|||||||
}
|
}
|
||||||
|
|
||||||
public class ViewHolder extends RecyclerView.ViewHolder {
|
public class ViewHolder extends RecyclerView.ViewHolder {
|
||||||
TextView tvnName, tvTime, tvMany, tvMassage;
|
TextView tvnName, tvTime, tvMany, tvMassage ,tvAuditStatus;
|
||||||
|
|
||||||
public ViewHolder(@NonNull @NotNull View itemView) {
|
public ViewHolder(@NonNull @NotNull View itemView) {
|
||||||
super(itemView);
|
super(itemView);
|
||||||
tvnName = itemView.findViewById(R.id.tv_has_name);
|
tvnName = itemView.findViewById(R.id.tv_has_name);
|
||||||
tvTime = itemView.findViewById(R.id.tv_createTime);
|
tvTime = itemView.findViewById(R.id.tv_createTime);
|
||||||
tvMany = itemView.findViewById(R.id.tv_auditStatus);
|
tvAuditStatus= itemView.findViewById(R.id.tv_auditStatus);
|
||||||
tvMassage = itemView.findViewById(R.id.tv_auditMsg);
|
tvMassage = itemView.findViewById(R.id.tv_auditMsg);
|
||||||
|
tvMany = itemView.findViewById(R.id.tv_many);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -39,7 +39,7 @@ public class HasSubmitBean {
|
|||||||
private Integer total;
|
private Integer total;
|
||||||
private List<ListBean> list;
|
private List<ListBean> list;
|
||||||
private Integer type;
|
private Integer type;
|
||||||
private Integer auditedCount;
|
private Integer auditingCount;
|
||||||
private Integer passCount;
|
private Integer passCount;
|
||||||
private Integer notPassCount;
|
private Integer notPassCount;
|
||||||
|
|
||||||
@ -91,12 +91,12 @@ public class HasSubmitBean {
|
|||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getAuditedCount() {
|
public Integer getAuditingCount() {
|
||||||
return auditedCount;
|
return auditingCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAuditedCount(Integer auditedCount) {
|
public void setAuditingCount(Integer auditingCount) {
|
||||||
this.auditedCount = auditedCount;
|
this.auditingCount = auditingCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getPassCount() {
|
public Integer getPassCount() {
|
||||||
|
@ -117,7 +117,7 @@ public class HasSubmitFragment extends BaseFragment implements View.OnClickListe
|
|||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
||||||
if (hasSubmitBeanBody!=null){
|
if (hasSubmitBeanBody!=null){
|
||||||
otherAuditProcess.setText(hasSubmitBeanBody.getAuditedCount()+"");
|
otherAuditProcess.setText(hasSubmitBeanBody.getAuditingCount()+"");
|
||||||
otherAuditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
otherAuditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
||||||
otherAuditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
otherAuditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
||||||
}
|
}
|
||||||
@ -150,7 +150,7 @@ public class HasSubmitFragment extends BaseFragment implements View.OnClickListe
|
|||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
||||||
if (hasSubmitBeanBody!=null){
|
if (hasSubmitBeanBody!=null){
|
||||||
chargingAuditProcess.setText(hasSubmitBeanBody.getAuditedCount()+"");
|
chargingAuditProcess.setText(hasSubmitBeanBody.getAuditingCount()+"");
|
||||||
chargingAuditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
chargingAuditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
||||||
chargingAuditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
chargingAuditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
||||||
}
|
}
|
||||||
@ -183,7 +183,7 @@ public class HasSubmitFragment extends BaseFragment implements View.OnClickListe
|
|||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
||||||
if (hasSubmitBeanBody!=null){
|
if (hasSubmitBeanBody!=null){
|
||||||
roadAuditProcess.setText(hasSubmitBeanBody.getAuditedCount()+"");
|
roadAuditProcess.setText(hasSubmitBeanBody.getAuditingCount()+"");
|
||||||
roadAuditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
roadAuditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
||||||
roadAuditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
roadAuditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
||||||
}
|
}
|
||||||
@ -216,7 +216,7 @@ public class HasSubmitFragment extends BaseFragment implements View.OnClickListe
|
|||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
||||||
if (hasSubmitBeanBody!=null){
|
if (hasSubmitBeanBody!=null){
|
||||||
poiVideoAuditProcess.setText(hasSubmitBeanBody.getAuditedCount()+"");
|
poiVideoAuditProcess.setText(hasSubmitBeanBody.getAuditingCount()+"");
|
||||||
poiVideoAuditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
poiVideoAuditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
||||||
poiVideoAuditProcessauditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
poiVideoAuditProcessauditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
||||||
}
|
}
|
||||||
@ -249,7 +249,7 @@ public class HasSubmitFragment extends BaseFragment implements View.OnClickListe
|
|||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
HasSubmitBean.BodyBean hasSubmitBeanBody = hasSubmitBean.getBody();
|
||||||
if (hasSubmitBeanBody!=null){
|
if (hasSubmitBeanBody!=null){
|
||||||
auditProcess.setText(hasSubmitBeanBody.getAuditedCount()+"");
|
auditProcess.setText(hasSubmitBeanBody.getAuditingCount()+"");
|
||||||
auditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
auditThrough.setText(hasSubmitBeanBody.getPassCount()+"");
|
||||||
auditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
auditNotThrough.setText(hasSubmitBeanBody.getNotPassCount()+"");
|
||||||
Log.d("TAG", "onSuccess: " + hasSubmitBean.getBody() + "");
|
Log.d("TAG", "onSuccess: " + hasSubmitBean.getBody() + "");
|
||||||
|
@ -64,7 +64,7 @@ public class PoiTaskFragment extends BaseFragment implements View.OnClickListene
|
|||||||
tvTaskTitle.setText("充电站任务列表");
|
tvTaskTitle.setText("充电站任务列表");
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
tvTaskTitle.setText("POIVIDEO任务列表");
|
tvTaskTitle.setText("POI录像任务列表");
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
tvTaskTitle.setText("道路任务列表");
|
tvTaskTitle.setText("道路任务列表");
|
||||||
@ -77,6 +77,7 @@ public class PoiTaskFragment extends BaseFragment implements View.OnClickListene
|
|||||||
ivPoiTaskFinish.setOnClickListener(this::onClick);
|
ivPoiTaskFinish.setOnClickListener(this::onClick);
|
||||||
poiTaskXrv = (XRecyclerView) findViewById(R.id.poiTask_xrv);
|
poiTaskXrv = (XRecyclerView) findViewById(R.id.poiTask_xrv);
|
||||||
poiTaskXrv.setLayoutManager(new LinearLayoutManager(getActivity()));
|
poiTaskXrv.setLayoutManager(new LinearLayoutManager(getActivity()));
|
||||||
|
poiTaskXrv.addItemDecoration(new DividerItemDecoration(getActivity(), DividerItemDecoration.VERTICAL));
|
||||||
poiTaskXrv.setRefreshProgressStyle(ProgressStyle.BallSpinFadeLoader);
|
poiTaskXrv.setRefreshProgressStyle(ProgressStyle.BallSpinFadeLoader);
|
||||||
poiTaskXrv.setLoadingMoreProgressStyle(ProgressStyle.BallRotate);
|
poiTaskXrv.setLoadingMoreProgressStyle(ProgressStyle.BallRotate);
|
||||||
poiTaskXrv.setLoadingListener(new XRecyclerView.LoadingListener() {
|
poiTaskXrv.setLoadingListener(new XRecyclerView.LoadingListener() {
|
||||||
|
@ -1,38 +1,52 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="60dp"
|
||||||
android:layout_margin="10dp"
|
android:layout_margin="10dp">
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:id="@+id/tv_has_name"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:textColor="@color/black"
|
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
|
||||||
android:text="11111111111"/>
|
|
||||||
<TextView
|
<TextView
|
||||||
|
android:id="@+id/tv_has_name"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:text="11111111111"
|
||||||
|
android:textColor="@color/black"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
android:id="@+id/tv_createTime"
|
android:id="@+id/tv_createTime"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/tv_has_name"
|
|
||||||
android:text="111111"
|
|
||||||
app:layout_constraintLeft_toLeftOf="@+id/tv_has_name"/>
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
app:layout_constraintTop_toTopOf="@+id/tv_has_name"
|
android:layout_marginTop="15dp"
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
android:text="111111"
|
||||||
android:id="@+id/tv_auditStatus"
|
app:layout_constraintLeft_toLeftOf="@+id/tv_has_name"
|
||||||
android:text="1111"/>
|
app:layout_constraintTop_toBottomOf="@+id/tv_has_name" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
android:id="@+id/tv_many"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="¥0.0"
|
||||||
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/tv_has_name" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_auditStatus"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="2222"
|
android:text="2222"
|
||||||
app:layout_constraintTop_toTopOf="@+id/tv_createTime"
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/tv_createTime" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
android:id="@+id/tv_auditMsg"
|
android:id="@+id/tv_auditMsg"
|
||||||
app:layout_constraintRight_toRightOf="parent"/>
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginRight="10dp"
|
||||||
|
android:text="2222"
|
||||||
|
app:layout_constraintRight_toLeftOf="@+id/tv_auditStatus"
|
||||||
|
app:layout_constraintTop_toTopOf="@+id/tv_createTime" />
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
Loading…
x
Reference in New Issue
Block a user