diff --git a/frontend/src/views/case-management/caseManagementFeature/components/tabContent/tabDetail.vue b/frontend/src/views/case-management/caseManagementFeature/components/tabContent/tabDetail.vue
index a950f7f3eb..2b178fcdb7 100644
--- a/frontend/src/views/case-management/caseManagementFeature/components/tabContent/tabDetail.vue
+++ b/frontend/src/views/case-management/caseManagementFeature/components/tabContent/tabDetail.vue
@@ -600,6 +600,8 @@
executeResult: item.executeResult,
};
});
+ } else {
+ stepData.value = [];
}
const fileIds = (attachments || []).map((item: any) => item.id);
if (fileIds.length) {
diff --git a/frontend/src/views/test-plan/testPlan/createAndEditPlanDrawer.vue b/frontend/src/views/test-plan/testPlan/createAndEditPlanDrawer.vue
index c3c8c04c06..8ba8914943 100644
--- a/frontend/src/views/test-plan/testPlan/createAndEditPlanDrawer.vue
+++ b/frontend/src/views/test-plan/testPlan/createAndEditPlanDrawer.vue
@@ -66,7 +66,7 @@
/>
-
+
diff --git a/frontend/src/views/test-plan/testPlan/detail/featureCase/components/caseTable.vue b/frontend/src/views/test-plan/testPlan/detail/featureCase/components/caseTable.vue
index 2cfb5bc610..db09e4bf7e 100644
--- a/frontend/src/views/test-plan/testPlan/detail/featureCase/components/caseTable.vue
+++ b/frontend/src/views/test-plan/testPlan/detail/featureCase/components/caseTable.vue
@@ -22,6 +22,7 @@
v-on="propsEvent"
@batch-action="handleTableBatch"
@drag-change="handleDragChange"
+ @filter-change="filterChange"
>
{{ record.num }}
@@ -415,6 +416,15 @@
}
);
+ function filterChange() {
+ tableParams.value = { ...tableParams.value, filter: propsRes.value.filter };
+ emit('getModuleCount', {
+ ...tableParams.value,
+ current: propsRes.value.msPagination?.current,
+ pageSize: propsRes.value.msPagination?.pageSize,
+ });
+ }
+
const tableSelected = ref<(string | number)[]>([]); // 表格选中的
const batchParams = ref({
selectIds: [],
diff --git a/frontend/src/views/test-plan/testPlan/detail/featureCase/detail/index.vue b/frontend/src/views/test-plan/testPlan/detail/featureCase/detail/index.vue
index 3e65a3572f..5f2bdb1a4b 100644
--- a/frontend/src/views/test-plan/testPlan/detail/featureCase/detail/index.vue
+++ b/frontend/src/views/test-plan/testPlan/detail/featureCase/detail/index.vue
@@ -57,9 +57,9 @@
-
+