修改劳务管理中查询人员的身份证号部分显示为*号

This commit is contained in:
Vce 2024-04-17 09:19:16 +08:00
parent 182ba8e85c
commit bb81ad294f

View File

@ -71,6 +71,10 @@
},
success:res=>{
this.listData = res.result;
this.listData.map(item => {
let str = "***************"
item.idCard = item.idCard.substring(0,3)+str+item.idCard.substring(16)
})
}
})
},