From fac47279b586cf15f8eb9e8c2467050b83ec0795 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Tue, 23 Jul 2024 14:26:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=97=A5=E5=BF=97IMS-CDR=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E6=9F=A5=E8=AF=A2=E9=BB=98=E8=AE=A4=E7=A9=BA=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E5=85=A8=E6=9F=A5=E8=AF=A2=EF=BC=8C=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E5=AE=BD=E5=BA=A6=E5=A2=9E=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/imsCDR/index.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/dashboard/imsCDR/index.vue b/src/views/dashboard/imsCDR/index.vue index ba134389..b4bbdef0 100644 --- a/src/views/dashboard/imsCDR/index.vue +++ b/src/views/dashboard/imsCDR/index.vue @@ -44,7 +44,7 @@ let queryParams = reactive({ /**网元类型 */ neType: 'IMS', neId: '001', - recordType: 'MOC', + recordType: '', callerParty: '', calledParty: '', sortField: 'timestamp', @@ -61,9 +61,9 @@ let queryParams = reactive({ /**查询参数重置 */ function fnQueryReset() { - recordTypes.value = ['MOC']; + recordTypes.value = []; queryParams = Object.assign(queryParams, { - recordType: 'MOC', + recordType: '', callerParty: '', calledParty: '', startTime: '', @@ -78,7 +78,7 @@ function fnQueryReset() { } /**记录类型 */ -const recordTypes = ref(['MOC']); +const recordTypes = ref([]); /**查询记录类型变更 */ function fnQueryRecordTypeChange(value: any) { @@ -639,7 +639,7 @@ onBeforeUnmount(() => { :data-source="tableState.data" :size="tableState.size" :pagination="tablePagination" - :scroll="{ x: tableColumns.length * 120, y: 'calc(100vh - 480px)' }" + :scroll="{ x: tableColumns.length * 150, y: 'calc(100vh - 480px)' }" :row-selection="{ type: 'checkbox', columnWidth: '48px',