From 3d3f4c2cc6d99e366a04d1514f26f8964253e93d Mon Sep 17 00:00:00 2001 From: lai <371757574@qq.com> Date: Wed, 15 May 2024 14:43:07 +0800 Subject: [PATCH 1/7] =?UTF-8?q?=E7=9C=8B=E6=9D=BF=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/overview/css/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/overview/css/index.css b/src/views/dashboard/overview/css/index.css index fcb6d4c2..56a135e4 100644 --- a/src/views/dashboard/overview/css/index.css +++ b/src/views/dashboard/overview/css/index.css @@ -221,7 +221,7 @@ .upfFlowTotal .inner .chart { width: 100%; height: 100%; - margin-top: 1rem; + margin-top: 0.1rem; } .upfFlowTotal .inner .chart .data { display: flex; From f6122c07588079821f4d55c9eeb049b7c20bf451 Mon Sep 17 00:00:00 2001 From: lai <371757574@qq.com> Date: Wed, 15 May 2024 14:44:35 +0800 Subject: [PATCH 2/7] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=B8=BA=E6=B4=BB?= =?UTF-8?q?=E5=8A=A8=E5=91=8A=E8=AD=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/faultManage/actAlarm.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/faultManage/actAlarm.ts b/src/api/faultManage/actAlarm.ts index c85f3733..7d96ac81 100644 --- a/src/api/faultManage/actAlarm.ts +++ b/src/api/faultManage/actAlarm.ts @@ -294,7 +294,7 @@ export async function exportAll(query: Record) { * @returns bolb */ export async function origGet() { - let totalSQL = `select count(*) as value,orig_severity as name from alarm group by orig_severity`; + let totalSQL = `select count(*) as value,orig_severity as name from alarm WHERE alarm_status='1' group by orig_severity`; // 发起请求 const result = await request({ @@ -329,8 +329,8 @@ export async function origGet() { * @returns object */ export async function top3Sel(filterFlag?: string) { - let filter = ` WHERE orig_severity='${filterFlag}'`; - if (!filterFlag) filter = ''; + let filter = ` WHERE alarm_status='1'and orig_severity='${filterFlag}'`; + if (!filterFlag) filter = "WHERE alarm_status='1'"; let top3SQL = `select count(*) as value,ne_type as name from alarm ${filter} group by ne_type ORDER BY value desc limit 0,3 `; From ce1944881a68502085794f60481ab82df2533835 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 15 May 2024 19:21:24 +0800 Subject: [PATCH 3/7] =?UTF-8?q?style:=20=E9=9A=90=E8=97=8FIP=E5=9C=B0?= =?UTF-8?q?=E5=9D=80=E5=8C=BA=E5=9F=9F=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/monitor/online/index.vue | 10 +++++----- src/views/system/log/login/index.vue | 12 ++++++------ src/views/system/log/operate/index.vue | 3 +-- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/src/views/monitor/online/index.vue b/src/views/monitor/online/index.vue index 868afdb9..eb3b7b29 100644 --- a/src/views/monitor/online/index.vue +++ b/src/views/monitor/online/index.vue @@ -66,11 +66,11 @@ let tableColumns: ColumnsType = [ dataIndex: 'ipaddr', align: 'center', }, - { - title: t('views.monitor.online.loginDes'), - dataIndex: 'loginLocation', - align: 'center', - }, + // { + // title: t('views.monitor.online.loginDes'), + // dataIndex: 'loginLocation', + // align: 'center', + // }, { title: t('views.monitor.online.os'), dataIndex: 'os', diff --git a/src/views/system/log/login/index.vue b/src/views/system/log/login/index.vue index ef5f19db..aaf15eee 100644 --- a/src/views/system/log/login/index.vue +++ b/src/views/system/log/login/index.vue @@ -112,12 +112,12 @@ let tableColumns: ColumnsType = [ align: 'left', width: 150, }, - { - title: t('views.system.log.login.loginLoc'), - dataIndex: 'loginLocation', - align: 'left', - width: 150, - }, + // { + // title: t('views.system.log.login.loginLoc'), + // dataIndex: 'loginLocation', + // align: 'left', + // width: 150, + // }, { title: t('views.system.log.login.os'), dataIndex: 'os', diff --git a/src/views/system/log/operate/index.vue b/src/views/system/log/operate/index.vue index d77c3da2..b56c835d 100644 --- a/src/views/system/log/operate/index.vue +++ b/src/views/system/log/operate/index.vue @@ -656,8 +656,7 @@ onMounted(() => { :label="t('views.system.log.operate.operUser')" name="operName" > - {{ modalState.from.operName }} / {{ modalState.from.operIp }} / - {{ modalState.from.operLocation }} + {{ modalState.from.operName }} / {{ modalState.from.operIp }} From 3948924f61a1f282f4c7b7cb3ec7581f9888a697 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 15 May 2024 19:21:49 +0800 Subject: [PATCH 4/7] =?UTF-8?q?del:=20=E5=88=A0=E9=99=A4=E6=97=A7=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/logManage/operation/index.vue | 358 ------------------------ src/views/logManage/security/index.vue | 337 ---------------------- 2 files changed, 695 deletions(-) delete mode 100644 src/views/logManage/operation/index.vue delete mode 100644 src/views/logManage/security/index.vue diff --git a/src/views/logManage/operation/index.vue b/src/views/logManage/operation/index.vue deleted file mode 100644 index 04cc9bf3..00000000 --- a/src/views/logManage/operation/index.vue +++ /dev/null @@ -1,358 +0,0 @@ - - - - - diff --git a/src/views/logManage/security/index.vue b/src/views/logManage/security/index.vue deleted file mode 100644 index baf25c89..00000000 --- a/src/views/logManage/security/index.vue +++ /dev/null @@ -1,337 +0,0 @@ - - - - - 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 5/7] =?UTF-8?q?feat:=20AMF=E7=94=A8=E6=88=B7=E4=BA=8B?= =?UTF-8?q?=E4=BB=B6=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(() => { - + + + + + + From 7a0298a41983fb8cf1ad3a31b4b1fbe849778067 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Fri, 17 May 2024 18:00:56 +0800 Subject: [PATCH 6/7] =?UTF-8?q?feat:=20IMS=E7=94=A8=E6=88=B7=E8=AF=9D?= =?UTF-8?q?=E5=8D=95=E6=94=AF=E6=8C=81=E5=8F=B7=E7=A0=81=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/imsCDR/index.vue | 34 +++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/src/views/dashboard/imsCDR/index.vue b/src/views/dashboard/imsCDR/index.vue index 621b645f..2696dd21 100644 --- a/src/views/dashboard/imsCDR/index.vue +++ b/src/views/dashboard/imsCDR/index.vue @@ -37,6 +37,8 @@ let queryParams = reactive({ neType: 'IMS', neId: '001', recordType: 'MOC', + callerParty: '', + calledParty: '', sortField: 'timestamp', sortOrder: 'desc', /**当前页数 */ @@ -50,6 +52,8 @@ function fnQueryReset() { recordTypes.value = ['MOC']; queryParams = Object.assign(queryParams, { recordType: 'MOC', + callerParty: '', + calledParty: '', pageNum: 1, pageSize: 20, }); @@ -411,14 +415,14 @@ onBeforeUnmount(() => { - + { > - + + + + + + + + + + + From f2c67d087b1d36274f6f4f3b379b28366ef64b82 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Fri, 17 May 2024 18:02:22 +0800 Subject: [PATCH 7/7] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC240517?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.production | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.development b/.env.development index e8936783..97ce74ca 100644 --- a/.env.development +++ b/.env.development @@ -11,7 +11,7 @@ VITE_APP_NAME = "Core Network EMS" VITE_APP_CODE = "CN EMS" # 应用版本 -VITE_APP_VERSION = "2.240508.1" +VITE_APP_VERSION = "2.240517.1" # 接口基础URL地址-不带/后缀 VITE_API_BASE_URL = "/omc-api" diff --git a/.env.production b/.env.production index c082d4e6..fa1425ce 100644 --- a/.env.production +++ b/.env.production @@ -11,7 +11,7 @@ VITE_APP_NAME = "Core Network EMS" VITE_APP_CODE = "CN EMS" # 应用版本 -VITE_APP_VERSION = "2.240508.1" +VITE_APP_VERSION = "2.240517.1" # 接口基础URL地址-不带/后缀 VITE_API_BASE_URL = "/omc-api"