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',