vue 未登录隐藏敏感信息
{{jobInfo.company_name|selection}}
filters:{
//隐藏隐私信息的方法
selection(value){
if(that.userId){
return value;
}else{
return 'XXXXXXXXX';
}
},
}
.selection {
-moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
color: transparent !important;
text-shadow: 0px 0px 15px #666 !important;
}
版权声明:
作者:超级管理员
链接:
https://www.apecloud.ltd/article/detail.html?id=98
来源:猿码云个人技术站
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
打赏
共有0条评论