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; });