diff --git a/frontend/src/components/pure/ms-table/columnSelector.vue b/frontend/src/components/pure/ms-table/columnSelector.vue index 7a405d8dbc..add81052c6 100644 --- a/frontend/src/components/pure/ms-table/columnSelector.vue +++ b/frontend/src/components/pure/ms-table/columnSelector.vue @@ -188,7 +188,7 @@ } }); tableStore.getSubShow(props.tableKey).then((res) => { - subdirectoryVal.value = res || true; + subdirectoryVal.value = res === undefined ? true : res; }); tableStore.getPageSize(props.tableKey).then((res) => { pageSize.value = res; diff --git a/frontend/src/views/api-test/management/components/management/api/apiTable.vue b/frontend/src/views/api-test/management/components/management/api/apiTable.vue index b8f81f655a..3f67d63311 100644 --- a/frontend/src/views/api-test/management/components/management/api/apiTable.vue +++ b/frontend/src/views/api-test/management/components/management/api/apiTable.vue @@ -27,6 +27,7 @@ @selected-change="handleTableSelect" @batch-action="handleTableBatch" @drag-change="handleTableDragSort" + @module-change="loadApiList" >