🐛 修正类型异常

This commit is contained in:
BTMuli
2026-04-15 19:57:45 +08:00
parent 72e3ed4061
commit 0e21015e33

View File

@@ -94,7 +94,7 @@ onMounted(async () => {
await TGLogger.Warn(`[${postId}]获取帖子数据失败:${resp.retcode} ${resp.message}`);
return;
}
jsonData.value = resp.data;
jsonData.value = resp.data.post;
} catch (e) {
const errMsg = TGHttps.getErrMsg(e);
await showLoading.empty("获取数据失败", errMsg);