From 05316275ee6f1623cc022a3cb4967a440c105a6b Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期二, 29 七月 2025 16:43:42 +0800 Subject: [PATCH] add:编辑资料 --- components/comment/comment-popup.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/components/comment/comment-popup.vue b/components/comment/comment-popup.vue index a7eac02..eccefc0 100644 --- a/components/comment/comment-popup.vue +++ b/components/comment/comment-popup.vue @@ -200,7 +200,7 @@ // 构建评论数据 const commentData = { ...comment.value, - parentId: props.parentId || undefined, // 如果有parentId则使用,没有则为undefined + parentId: props.parentId || void 0, // 如果有parentId则使用,没有则为undefined filmId: props.filmId, content: comment.value.content, fileList: comment.value.fileList, -- Gitblit v1.9.3