From 0fbf1f7c2ad70f7aacf5f7d880199fe04926b180 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Tue, 18 Nov 2025 23:01:51 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E6=B7=BB=E5=8A=A0AIGC=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/BBS/Post.d.ts | 15 +++++++++++++-- src/views/t-post.vue | 7 ++++++- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/types/BBS/Post.d.ts b/src/types/BBS/Post.d.ts index 22db9f3b..aec32c51 100644 --- a/src/types/BBS/Post.d.ts +++ b/src/types/BBS/Post.d.ts @@ -1,6 +1,6 @@ /** * 帖子类型定义文件 - * @since Beta v0.8.4 + * @since Beta v0.8.6 */ declare namespace TGApp.BBS.Post { @@ -348,11 +348,13 @@ declare namespace TGApp.BBS.Post { /** * 帖子额外信息 - * @since Beta v0.8.4 + * @since Beta v0.8.6 */ type PostExtra = { /** UGC 主帖子额外信息 */ ugc_master_post_extra: PostExtraUgc; + /** AIGC 额外信息 */ + minos_aigc_info: PostExtraAigc | null; }; /** @@ -366,6 +368,15 @@ declare namespace TGApp.BBS.Post { game_region: string; }; + /** + * AIGC 额外信息 + * @since Beta v0.8.6 + */ + type PostExtraAigc = { + /** 是否包含 AI 生成内容 */ + is_aigc: boolean; + }; + /** * AI 生成内容元数据 * @since Beta v0.8.4 diff --git a/src/views/t-post.vue b/src/views/t-post.vue index f12a77e6..62242140 100644 --- a/src/views/t-post.vue +++ b/src/views/t-post.vue @@ -108,6 +108,10 @@ mdi-copyright {{ getRepublishAuthorization(postData.post.republish_authorization) }} + + mdi-robot + 疑似含AI生成内容,请谨慎甄别 + @@ -490,7 +494,8 @@ function handleUser(user: TGApp.BBS.Post.User): void { opacity: 0.8; } -.tp-post-copyright { +.tp-post-copyright, +.tp-post-aigc { display: flex; align-items: center; justify-content: center;