|
@@ -526,6 +526,7 @@ export default {
|
|
|
console.log('this.contactList',this.contactList);
|
|
|
for (var i = 0; i < this.contactList.length; i++) {
|
|
|
this.contactList[i].telephone = this.contactList[i].telephone.substring(0,3) + '******' + this.contactList[i].telephone.substring(this.contactList[i].telephone.length - 4,this.contactList[i].telephone.length);
|
|
|
+ this.contactList[i].customerName = this.contactList[i].customerName.substring(0,2) + '******' + this.contactList[i].customerName.substring(this.contactList[i].customerName.length - 2,this.contactList[i].customerName.length);
|
|
|
}
|
|
|
}
|
|
|
this.total = response.total;
|