🎨 updated comment code framework / add comment verification

This commit is contained in:
landaiqing
2024-09-26 01:15:29 +08:00
parent e4b9214840
commit 96ae754efd
22 changed files with 1997 additions and 1258 deletions

View File

@@ -10,7 +10,6 @@ interface CommentContent {
browser: string;
content: string;
created_time: string;
dislikes: number;
id: number;
likes: number;
location: string;
@@ -25,6 +24,7 @@ interface CommentContent {
nickname: string;
level?: number;
images: string[];
is_liked: boolean;
}
export interface ReplyCommentParams {
@@ -36,4 +36,6 @@ export interface ReplyCommentParams {
reply_id: number,
reply_user: string,
reply_to: number,
point: [number, number]
key: string
}