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;