修复在HTTP/1.x下开多个窗口访问非常慢的问题

This commit is contained in:
刘祥超
2023-04-19 21:03:46 +08:00
parent fc3769239d
commit 5a55268830
7 changed files with 21 additions and 9 deletions

View File

@@ -2312,7 +2312,9 @@ window.Tea.Action = function (action, params) {
.then(function () {
// console.log("done");
if (typeof (_doneFn) == "function") {
_doneFn.call(Tea.Vue, {});
setTimeout(function () {
_doneFn.call(Tea.Vue, {});
})
}
});
};