fix; SMSC-CDR时间格式调整

This commit is contained in:
TsMask
2024-11-12 10:12:32 +08:00
parent 3561a5dc39
commit 021f9f28f6

View File

@@ -176,7 +176,10 @@ let tableColumns: ColumnsType = [
width: 150,
customRender(opt) {
const cdrJSON = opt.value;
return parseDateToStr(+cdrJSON.updateTime * 1000);
if (typeof cdrJSON.seizureTime === 'number') {
return parseDateToStr(+cdrJSON.updateTime * 1000);
}
return cdrJSON.updateTime;
},
},
{