diff --git a/frontend/src/components/business/ms-minders/testPlanFeatureCaseMinder/index.vue b/frontend/src/components/business/ms-minders/testPlanFeatureCaseMinder/index.vue index a34fe2df2c..301d156e24 100644 --- a/frontend/src/components/business/ms-minders/testPlanFeatureCaseMinder/index.vue +++ b/frontend/src/components/business/ms-minders/testPlanFeatureCaseMinder/index.vue @@ -674,6 +674,7 @@ if (extraVisible.value && activeExtraKey.value === 'history') { initExecuteHistory(node.data); } + window.minder.refresh(); } else if (isModuleOrCollection(node.data)) { // 先清空子节点,从后向前遍历时,删除节点不会影响到尚未遍历的节点 for (let i = node.children.length - 1; i >= 0; i--) { diff --git a/frontend/src/views/api-test/components/requestComposition/index.vue b/frontend/src/views/api-test/components/requestComposition/index.vue index 993fbbdec5..154a8ff364 100644 --- a/frontend/src/views/api-test/components/requestComposition/index.vue +++ b/frontend/src/views/api-test/components/requestComposition/index.vue @@ -1309,8 +1309,9 @@ try { if (!props.updateApi) return; saveLoading.value = true; + const requestParams = await makeRequestParams(); const res = await props.updateApi({ - ...makeRequestParams(), + ...requestParams, ...props.otherParams, }); Message.success(t('common.updateSuccess'));