Commit 2a817c97 authored by yinjiacheng's avatar yinjiacheng

fix SHQBD-146 企业认证提交后,标签状态修改为待审核

parent eaf22524
......@@ -62,7 +62,7 @@ class LifeAccountEnterpriseAuthCompleteActivity :
private fun initData() {
viewBind.ivEnterpriseAuthInfo.fillAuthInfo(
-1,
Constant.STATUS_AUDIT_UNDER,
-1,
params?.get(REGISTRATION_NAME)?.let { it as String },
params?.get(REGISTRATION_CODE)
?.let { it as String },
......
......@@ -109,6 +109,17 @@ class LifeAccountEnterpriseAuthInfoView @JvmOverloads constructor(
)
)
}
else -> {
// 待审核 企业认证提交后
viewBinding.tvAuditStatus.text = resources.getText(R.string.pending_audit)
viewBinding.tvAuditStatus.setBackgroundResource(R.drawable.shape_life_account_status_audit)
viewBinding.tvAuditStatus.setTextColor(
ContextCompat.getColor(
context,
R.color.color_FFF26E3D
)
)
}
}
}
......
......@@ -58,7 +58,7 @@
<string name="submitted_successfully">提交成功</string>
<string name="mobile_phone_number_notification_information">已成功提交企业号审核,请留意注册手机号通知信息</string>
<string name="enterprise_certification">企业认证</string>
<string name="pending_review">待审核</string>
<string name="pending_audit">待审核</string>
<string name="company_name">公司名称</string>
<string name="credit_code">统一社会信用代码</string>
<string name="operator_information">经营者信息</string>
......
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 to comment