vue想要对身份证进行展示,但是又不想对其年月日部分进行展示,可以尝试是使用正则的方法进行脱敏处理。

if(this.ownerVo.ownerCard.length >= 10){
	let str = this.ownerVo.ownerCard
	str = str.replace(/(\w{6})\w*(\w{4})/,'$1******$2');
	this.ownerVo.ownerCard = str
}

效果图如下:
在这里插入图片描述

Logo

前往低代码交流专区

更多推荐