fix(测试计划): 改变模块视图后切换到全部接口
This commit is contained in:
parent
2a9d37ada5
commit
222f6e7d55
|
@ -177,6 +177,8 @@
|
|||
}
|
||||
}
|
||||
onMounted(() => {
|
||||
getTime();
|
||||
if (!props.doNotShowShare) {
|
||||
getTime();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -362,9 +362,8 @@
|
|||
const commonParams = {
|
||||
testPlanId: props.planId,
|
||||
projectId: appStore.currentProjectId,
|
||||
moduleIds: selectModules,
|
||||
protocols: props.selectedProtocols,
|
||||
collectionId: collectionId.value,
|
||||
...(props.treeType === 'COLLECTION' ? { collectionId: collectionId.value } : { moduleIds: selectModules }),
|
||||
};
|
||||
if (isBatch) {
|
||||
return {
|
||||
|
|
|
@ -154,5 +154,6 @@
|
|||
|
||||
defineExpose({
|
||||
initModules,
|
||||
setActiveFolder,
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -98,7 +98,11 @@
|
|||
function getCaseTableList() {
|
||||
nextTick(() => {
|
||||
initModules();
|
||||
caseTableRef.value?.loadCaseList();
|
||||
if (activeFolderId.value !== 'all') {
|
||||
caseTreeRef.value?.setActiveFolder('all');
|
||||
} else {
|
||||
caseTableRef.value?.loadCaseList();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -345,8 +345,7 @@
|
|||
const commonParams = {
|
||||
testPlanId: props.planId,
|
||||
projectId: appStore.currentProjectId,
|
||||
moduleIds: selectModules,
|
||||
collectionId: collectionId.value,
|
||||
...(props.treeType === 'COLLECTION' ? { collectionId: collectionId.value } : { moduleIds: selectModules }),
|
||||
};
|
||||
if (isBatch) {
|
||||
return {
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
);
|
||||
|
||||
defineExpose({
|
||||
setActiveFolder,
|
||||
initModules,
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -92,7 +92,11 @@
|
|||
function getCaseTableList() {
|
||||
nextTick(() => {
|
||||
initModules();
|
||||
caseTableRef.value?.loadCaseList();
|
||||
if (activeFolderId.value !== 'all') {
|
||||
caseTreeRef.value?.setActiveFolder('all');
|
||||
} else {
|
||||
caseTableRef.value?.loadCaseList();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -369,8 +369,7 @@
|
|||
const commonParams = {
|
||||
testPlanId: props.planId,
|
||||
projectId: appStore.currentProjectId,
|
||||
moduleIds: selectModules,
|
||||
collectionId: collectionId.value,
|
||||
...(props.treeType === 'COLLECTION' ? { collectionId: collectionId.value } : { moduleIds: selectModules }),
|
||||
};
|
||||
if (isBatch) {
|
||||
return {
|
||||
|
|
|
@ -164,6 +164,7 @@
|
|||
);
|
||||
|
||||
defineExpose({
|
||||
setActiveFolder,
|
||||
initModules,
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -94,7 +94,11 @@
|
|||
function getCaseTableList() {
|
||||
nextTick(() => {
|
||||
initModules();
|
||||
caseTableRef.value?.loadCaseList();
|
||||
if (activeFolderId.value !== 'all') {
|
||||
caseTreeRef.value?.setActiveFolder('all');
|
||||
} else {
|
||||
caseTableRef.value?.loadCaseList();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -314,10 +314,6 @@
|
|||
value: 'featureCase',
|
||||
label: t('menu.caseManagement.featureCase'),
|
||||
},
|
||||
{
|
||||
value: 'defectList',
|
||||
label: t('caseManagement.featureCase.defectList'),
|
||||
},
|
||||
{
|
||||
value: 'apiCase',
|
||||
label: t('testPlan.testPlanIndex.apiCase'),
|
||||
|
@ -326,6 +322,10 @@
|
|||
value: 'apiScenario',
|
||||
label: t('testPlan.testPlanIndex.apiScenarioCase'),
|
||||
},
|
||||
{
|
||||
value: 'defectList',
|
||||
label: t('caseManagement.featureCase.defectList'),
|
||||
},
|
||||
{
|
||||
value: 'executeHistory',
|
||||
label: t('testPlan.featureCase.executionHistory'),
|
||||
|
|
Loading…
Reference in New Issue