fix: 开站排除omc类型选择
This commit is contained in:
@@ -183,7 +183,7 @@ function fnGetList() {
|
|||||||
if (state.selectedRowKeys.length > 0) {
|
if (state.selectedRowKeys.length > 0) {
|
||||||
state.selectedRowKeys = [];
|
state.selectedRowKeys = [];
|
||||||
}
|
}
|
||||||
state.data = res.rows;
|
state.data = res.rows.filter(s => s.neType !== 'OMC');
|
||||||
}
|
}
|
||||||
state.loading = false;
|
state.loading = false;
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ function fnGetList() {
|
|||||||
if (state.selectedRowKeys.length > 0) {
|
if (state.selectedRowKeys.length > 0) {
|
||||||
state.selectedRowKeys = [];
|
state.selectedRowKeys = [];
|
||||||
}
|
}
|
||||||
state.data = res.rows;
|
state.data = res.rows.filter(s => s.neType !== 'OMC');;
|
||||||
}
|
}
|
||||||
state.loading = false;
|
state.loading = false;
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user