fix(测试跟踪): 关联用例弹窗关闭后打开未清空搜索条件
--bug=1034444 --user=宋昌昌 【测试跟踪】功能用例-关联接口&场景用例-选中模块后关闭弹框-再次关联-列表数据未更新显示所有数据 https://www.tapd.cn/55049933/s/1628976
This commit is contained in:
parent
a730ac3449
commit
9cf294237e
|
@ -3,6 +3,7 @@
|
|||
@clearSelect="clearSelect"
|
||||
@setProject="setProject"
|
||||
@save="saveCaseRelevance"
|
||||
@clearCondition="clearCondition"
|
||||
:dialog-title="$t('api_test.home_page.failed_case_list.table_value.case_type.api')"
|
||||
ref="baseRelevance"
|
||||
>
|
||||
|
@ -117,6 +118,9 @@ export default {
|
|||
this.condition = data;
|
||||
this.$refs.nodeTree.list(this.projectId);
|
||||
},
|
||||
clearCondition() {
|
||||
this.selectNodeIds = [];
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
@clearSelect="clearSelect"
|
||||
@setProject="setProject"
|
||||
@save="saveCaseRelevance"
|
||||
@clearCondition="clearCondition"
|
||||
:dialog-title="$t('api_test.home_page.failed_case_list.table_value.case_type.scene')"
|
||||
ref="baseRelevance"
|
||||
>
|
||||
|
@ -115,7 +116,10 @@ export default {
|
|||
setCondition(data) {
|
||||
this.condition = data;
|
||||
this.$refs.nodeTree.list(this.projectId);
|
||||
}
|
||||
},
|
||||
clearCondition() {
|
||||
this.selectNodeIds = [];
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
@clearSelect="clearSelect"
|
||||
@setProject="setProject"
|
||||
@save="saveCaseRelevance"
|
||||
@clearCondition="clearCondition"
|
||||
:dialog-title="$t('api_test.home_page.failed_case_list.table_value.case_type.ui')"
|
||||
ref="baseRelevance"
|
||||
>
|
||||
|
@ -117,7 +118,10 @@ export default {
|
|||
setCondition(data) {
|
||||
this.condition = data;
|
||||
this.$refs.nodeTree.list(this.projectId);
|
||||
}
|
||||
},
|
||||
clearCondition() {
|
||||
this.selectNodeIds = [];
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -227,6 +227,7 @@ export default {
|
|||
|
||||
close() {
|
||||
this.visible = false;
|
||||
this.$emit("clearCondition");
|
||||
},
|
||||
|
||||
open() {
|
||||
|
|
Loading…
Reference in New Issue