Commit 9eebaf75 authored by dragondean@qq.com's avatar dragondean@qq.com
parents 17e36310 1d9ac66f
......@@ -585,13 +585,13 @@ export default {
})
},
authentication(row){
if(!row.identityAuditStatus && !row.enterpriseAuditRemark){
if(!row.identityAuditStatus && !row.enterpriseAuditStatus){
return this.$t('')
}else if(row.identityAuditStatus >= 0 && row.enterpriseAuditRemark >= 0){
}else if(!!row.identityAuditStatus && !!row.enterpriseAuditStatus){
return this.$t('双认证')
} else if(row.identityAuditStatus >= 0){
return this.$t('身份')
}else if(row.enterpriseAuditRemark >= 0){
}else if(row.enterpriseAuditStatus >= 0){
return this.$t('营业')
}
},
......
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