|  | @@ -78,10 +78,10 @@ public class UnBindTenantActivity extends BaseMVPActivity<AcUnbindTenantLayoutBi
 | 
	
		
			
				|  |  |              String cPhone = mPhoneNum.substring(0, 3) + "****" + mPhoneNum.substring(7, mPhoneNum.length());
 | 
	
		
			
				|  |  |              viewBinding.tvTitle.setText(String.format("将%s所绑定的机构解绑", cPhone));
 | 
	
		
			
				|  |  |              String tenantName = UserHelper.getTenantName();
 | 
	
		
			
				|  |  | -            SpannableString spannableString = UiUtils.diffColorString("解绑机构后,在此机构的数据将无法恢复,确认要继续解绑", tenantName, "吗?", getResources().getColor(com.dayayuemeng.classroom.R.color.color_777777), getResources().getColor(com.cooleshow.base.R.color.color_ff5a56));
 | 
	
		
			
				|  |  | +            SpannableString spannableString = UiUtils.diffColorString("解绑机构后,在此机构的数据将无法恢复,确认要继续解绑", "【" + tenantName + "】", "吗?", getResources().getColor(com.dayayuemeng.classroom.R.color.color_777777), getResources().getColor(com.cooleshow.base.R.color.color_ff5a56));
 | 
	
		
			
				|  |  |              viewBinding.tvTip.setText(spannableString);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -            SpannableString spannableString2 = UiUtils.diffColorString("您已申请解绑", tenantName, ",正在审核中,请耐心等待机构人员处理", getResources().getColor(com.dayayuemeng.classroom.R.color.color_777777), getResources().getColor(com.cooleshow.base.R.color.color_ff5a56));
 | 
	
		
			
				|  |  | +            SpannableString spannableString2 = UiUtils.diffColorString("您已申请解绑", "【" + tenantName + "】", ",正在审核中,请耐心等待机构人员处理", getResources().getColor(com.dayayuemeng.classroom.R.color.color_777777), getResources().getColor(com.cooleshow.base.R.color.color_ff5a56));
 | 
	
		
			
				|  |  |              viewBinding.tvTip2.setText(spannableString2);
 | 
	
		
			
				|  |  |          } catch (Exception e) {
 | 
	
		
			
				|  |  |              e.printStackTrace();
 | 
	
	
		
			
				|  | @@ -227,10 +227,13 @@ public class UnBindTenantActivity extends BaseMVPActivity<AcUnbindTenantLayoutBi
 | 
	
		
			
				|  |  |      private void showConfirmDialog() {
 | 
	
		
			
				|  |  |          String authCode = viewBinding.etNum.getText().toString().trim();
 | 
	
		
			
				|  |  |          if (TextUtils.isEmpty(authCode)) {
 | 
	
		
			
				|  |  | -            ToastUtil.getInstance().showShort("请输入验证码");
 | 
	
		
			
				|  |  | +            ToastUtil.getInstance().showShort("请输入短信验证码");
 | 
	
		
			
				|  |  |              return;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          String reason = viewBinding.etContent.getText().toString().trim();
 | 
	
		
			
				|  |  | +        if (TextUtils.isEmpty(reason)) {
 | 
	
		
			
				|  |  | +            ToastUtil.getInstance().showShort("请填写解绑原因");
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  |          CommonDialog commonConfirmDialog = new CommonDialog(this);
 | 
	
		
			
				|  |  |          commonConfirmDialog.show();
 | 
	
		
			
				|  |  |          commonConfirmDialog.setTitle("提示");
 |