fix: 开站排除omc类型选择

This commit is contained in:
TsMask
2024-05-10 14:42:26 +08:00
parent ad9f8574bd
commit 873a76f48f
2 changed files with 2 additions and 2 deletions

View File

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

View File

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