diff --git a/frontend/src/components/pure/ms-table/comp/defaultFilter.vue b/frontend/src/components/pure/ms-table/comp/defaultFilter.vue index f254cf6a26..8a687ff2bb 100644 --- a/frontend/src/components/pure/ms-table/comp/defaultFilter.vue +++ b/frontend/src/components/pure/ms-table/comp/defaultFilter.vue @@ -23,7 +23,7 @@
@@ -100,6 +100,7 @@ dataIndex?: string | undefined; filter: Record; emptyFilter?: boolean; // 增加-空选项查询 + disabledTooltip?: boolean; // 是否禁用tooltip }>(), { mode: 'static', diff --git a/frontend/src/components/pure/ms-table/type.ts b/frontend/src/components/pure/ms-table/type.ts index 26497a3979..66190fb9ec 100644 --- a/frontend/src/components/pure/ms-table/type.ts +++ b/frontend/src/components/pure/ms-table/type.ts @@ -36,6 +36,7 @@ export interface MsTableColumnFilterConfig { placeholderText?: string; firstLabelKey?: string; secondLabelKey?: string; + disabledTooltip?: boolean; } export interface MsTableRowSelectionDisabledConfig { diff --git a/frontend/src/views/workbench/components/scenarioCaseTable.vue b/frontend/src/views/workbench/components/scenarioCaseTable.vue index c9105029c8..94806b4b46 100644 --- a/frontend/src/views/workbench/components/scenarioCaseTable.vue +++ b/frontend/src/views/workbench/components/scenarioCaseTable.vue @@ -171,6 +171,7 @@ filterConfig: { options: requestApiScenarioStatusOptions.value, filterSlotName: FilterSlotNameEnum.API_TEST_CASE_API_STATUS, + disabledTooltip: true, }, showDrag: true, width: 140, diff --git a/frontend/src/views/workbench/components/testCaseTable.vue b/frontend/src/views/workbench/components/testCaseTable.vue index 0a0b42248a..1101a7f06f 100644 --- a/frontend/src/views/workbench/components/testCaseTable.vue +++ b/frontend/src/views/workbench/components/testCaseTable.vue @@ -23,7 +23,7 @@