From 021f9f28f6ab00e3b04797231d523d4a3a25e1c7 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Tue, 12 Nov 2024 10:12:32 +0800 Subject: [PATCH] =?UTF-8?q?fix;=20SMSC-CDR=E6=97=B6=E9=97=B4=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/smscCDR/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/dashboard/smscCDR/index.vue b/src/views/dashboard/smscCDR/index.vue index 0c160722..7afae735 100644 --- a/src/views/dashboard/smscCDR/index.vue +++ b/src/views/dashboard/smscCDR/index.vue @@ -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; }, }, {