代码提交

This commit is contained in:
liang.chao 2025-07-18 17:49:56 +08:00
parent c411d90373
commit cb0ab5cc93
1 changed files with 7 additions and 3 deletions

View File

@ -143,8 +143,12 @@
{ {
field: 'phone', title: '联系电话', width: '15%', align: "center", field: 'phone', title: '联系电话', width: '15%', align: "center",
templet: function (d) { templet: function (d) {
if (d.phone) {
let phone = decryptCBC(d.phone); let phone = decryptCBC(d.phone);
return maskSensitiveInfo(phone, "phone"); return maskSensitiveInfo(phone, "phone");
} else {
return "";
}
} }
}, },
{field: 'address', title: '单位地址', align: "center"}, {field: 'address', title: '单位地址', align: "center"},