fix(time): setInterval -> setTimeout

This commit is contained in:
BTMuli
2023-04-03 13:32:32 +08:00
parent cd54e4a80e
commit 2fe9fae523
6 changed files with 6 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ onMounted(async () => {
// 获取数据
loadingTitle.value = "正在获取数据...";
jsonData = await MysOper.Post.get(post_id);
setInterval(() => {
setTimeout(() => {
loading.value = false;
}, 200);
});