|
|
@@ -1322,7 +1322,15 @@ export default {
|
|
|
this.resArr = resArr;
|
|
|
setTimeout(() => {
|
|
|
waterMark.set(
|
|
|
- this.userMessage.user_name + " " + this.userMessage.phone,
|
|
|
+ this.userMessage.user_name +
|
|
|
+ " " +
|
|
|
+ (this.userMessage.phone
|
|
|
+ ? this.userMessage.phone.substring(0, 3) +
|
|
|
+ "****" +
|
|
|
+ this.userMessage.phone.substring(
|
|
|
+ this.userMessage.phone.length - 4
|
|
|
+ )
|
|
|
+ : ""),
|
|
|
"",
|
|
|
"showWaterMark"
|
|
|
);
|
|
|
@@ -1789,7 +1797,15 @@ export default {
|
|
|
this.isPrintMore = true;
|
|
|
setTimeout(() => {
|
|
|
waterMark.set(
|
|
|
- this.userMessage.user_name + " " + this.userMessage.phone,
|
|
|
+ this.userMessage.user_name +
|
|
|
+ " " +
|
|
|
+ (this.userMessage.phone
|
|
|
+ ? this.userMessage.phone.substring(0, 3) +
|
|
|
+ "****" +
|
|
|
+ this.userMessage.phone.substring(
|
|
|
+ this.userMessage.phone.length - 4
|
|
|
+ )
|
|
|
+ : ""),
|
|
|
"",
|
|
|
"showWaterMarks"
|
|
|
);
|