|
@@ -137,8 +137,8 @@ export default {
|
|
|
if (item.name.length >= 2) {
|
|
|
hideName = item.name[0] + " " + "*" + item.name.substring(2);
|
|
|
}
|
|
|
- if (item.telno && item.telno.length === 11) {
|
|
|
- hideTel = this.hideMiddleDigits(item.telno);
|
|
|
+ if (item.tel_one && item.tel_one.length === 11) {
|
|
|
+ hideTel = this.hideMiddleDigits(item.tel_one);
|
|
|
}
|
|
|
return {
|
|
|
...item,
|
|
@@ -156,7 +156,7 @@ export default {
|
|
|
<div class="top-left">${item.alarmMsg}</div>
|
|
|
<div class="top-right">${item.createTime}</div>
|
|
|
</div>
|
|
|
- <div class="middle">${item.name} (${item.tel_one})</div>
|
|
|
+ <div class="middle">${item.name} (${item.telno})</div>
|
|
|
<div class="under">告警地址:${item.location}</div>
|
|
|
</div>`,
|
|
|
];
|