From d7b4fd3f710b579c6615873912b38684cc66c005 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 20 Nov 2024 11:12:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20SMSC-CDR=E6=97=B6=E9=97=B4=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=88=A4=E6=96=AD=E6=98=AF=E5=90=A6=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E6=88=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/smscCDR/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/smscCDR/index.vue b/src/views/dashboard/smscCDR/index.vue index 7afae735..57140a04 100644 --- a/src/views/dashboard/smscCDR/index.vue +++ b/src/views/dashboard/smscCDR/index.vue @@ -176,7 +176,7 @@ let tableColumns: ColumnsType = [ width: 150, customRender(opt) { const cdrJSON = opt.value; - if (typeof cdrJSON.seizureTime === 'number') { + if (typeof cdrJSON.updateTime === 'number') { return parseDateToStr(+cdrJSON.updateTime * 1000); } return cdrJSON.updateTime;