fix(接口管理): 修复接口定义列表跳转执行不显示结果问题

--bug=1037701 --user=郭雨琦 https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001037701
This commit is contained in:
guoyuqi 2024-03-26 16:52:57 +08:00 committed by Craftsman
parent 4e0a3fd33b
commit bd9abe2627
1 changed files with 3 additions and 1 deletions

View File

@ -154,7 +154,9 @@
() => props.executeCase,
(val) => {
if (val === true) {
execute(isPriorityLocalExec.value ? 'localExec' : 'serverExec');
setTimeout(() => {
execute(isPriorityLocalExec.value ? 'localExec' : 'serverExec');
}, 300);
}
},
{ immediate: true }