From b40e7980906a08e4f763322ff7c2b5412ea9b63f Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Fri, 17 May 2024 18:00:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20AMF=E7=94=A8=E6=88=B7=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E6=94=AF=E6=8C=81IMSI=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/amfUE/index.vue | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/src/views/dashboard/amfUE/index.vue b/src/views/dashboard/amfUE/index.vue index 03674474..0a4f77aa 100644 --- a/src/views/dashboard/amfUE/index.vue +++ b/src/views/dashboard/amfUE/index.vue @@ -39,6 +39,7 @@ let queryParams = reactive({ neType: 'AMF', neId: '001', eventType: 'auth-result', + imsi: '', sortField: 'timestamp', sortOrder: 'desc', /**当前页数 */ @@ -52,6 +53,7 @@ function fnQueryReset() { eventTypes.value = ['auth-result']; queryParams = Object.assign(queryParams, { eventType: 'auth-result', + imsi: '', pageNum: 1, pageSize: 20, }); @@ -105,7 +107,7 @@ let tableColumns: ColumnsType = [ title: 'IMSI', dataIndex: 'eventJSON', align: 'left', - width: 100, + width: 150, customRender(opt) { const eventJSON = opt.value; return eventJSON.imsi; @@ -116,20 +118,20 @@ let tableColumns: ColumnsType = [ dataIndex: 'eventType', key: 'eventType', align: 'left', - width: 100, + width: 150, }, { title: t('views.dashboard.ue.result'), dataIndex: 'eventJSON', key: 'result', align: 'left', - width: 100, + width: 150, }, { title: t('views.dashboard.ue.time'), dataIndex: 'eventJSON', key: 'time', - align: 'center', + align: 'left', width: 150, }, { @@ -383,20 +385,29 @@ onBeforeUnmount(() => { - + + + + + +