Commit c6c9071f by han xu

身份验证增加更新功能

parent 0146e087
......@@ -111,18 +111,22 @@ public class UserInfoActivity extends BaseActivity<UserInfoPresenter, ActivityUs
case 1://已认证
mBind.identityAudited.setText(R.string.identity_audited);
params.setMarginEnd(0);
mBind.btnUpdate.setVisibility(View.VISIBLE);
break;
case 2://未认证
mBind.identityAudited.setText(R.string.identity_unaudite);
params.setMarginEnd(60);
mBind.btnUpdate.setVisibility(View.GONE);
break;
case 3://未通过
mBind.identityAudited.setText(R.string.identity_unpass);
params.setMarginEnd(60);
mBind.btnUpdate.setVisibility(View.GONE);
break;
case 4://待审核
params.setMarginEnd(0);
mBind.identityAudited.setText(R.string.identity_wait);
mBind.btnUpdate.setVisibility(View.GONE);
break;
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment