From 873a76f48f7a3e44044870ad3a9d3913a724f3b0 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Fri, 10 May 2024 14:42:26 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BC=80=E7=AB=99=E6=8E=92=E9=99=A4omc?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E9=80=89=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/quick-start/components/NeInfoSoftwareInstall.vue | 2 +- .../system/quick-start/components/NeInfoSoftwareLicense.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/system/quick-start/components/NeInfoSoftwareInstall.vue b/src/views/system/quick-start/components/NeInfoSoftwareInstall.vue index f32f94a9..51316f46 100644 --- a/src/views/system/quick-start/components/NeInfoSoftwareInstall.vue +++ b/src/views/system/quick-start/components/NeInfoSoftwareInstall.vue @@ -183,7 +183,7 @@ function fnGetList() { if (state.selectedRowKeys.length > 0) { state.selectedRowKeys = []; } - state.data = res.rows; + state.data = res.rows.filter(s => s.neType !== 'OMC'); } state.loading = false; }); diff --git a/src/views/system/quick-start/components/NeInfoSoftwareLicense.vue b/src/views/system/quick-start/components/NeInfoSoftwareLicense.vue index 0f482c3b..7cb2da84 100644 --- a/src/views/system/quick-start/components/NeInfoSoftwareLicense.vue +++ b/src/views/system/quick-start/components/NeInfoSoftwareLicense.vue @@ -193,7 +193,7 @@ function fnGetList() { if (state.selectedRowKeys.length > 0) { state.selectedRowKeys = []; } - state.data = res.rows; + state.data = res.rows.filter(s => s.neType !== 'OMC');; } state.loading = false; });