update 调整位置为空时的文字样式,调整表格组件

This commit is contained in:
zk
2024-05-21 16:11:13 +08:00
parent 8c7e4a6e91
commit 062afc3d71
5 changed files with 10 additions and 8 deletions
@@ -147,7 +147,7 @@ export function useAlarmDetail() {
if (record?.lat) {
return `${record.lat},${record.lon}`;
} else {
return '未知位置';
return `<span style="color: #eb3636;">${record?.gpsErrorMsg || ''}</span>`;
}
},
},
@@ -369,4 +369,4 @@ export function infoContent(res) {
</div>
</div>
`;
}
}