add feedback page

This commit is contained in:
2023-12-10 23:07:42 +08:00
parent f7d3a2128a
commit 9f4319bd13
7 changed files with 208 additions and 8 deletions

View File

@@ -437,3 +437,24 @@ export interface DanmakuModel {
isEmoji: boolean
num: number
}
export interface ResponseFeedbackModel {
message: string
type: FeedbackType
status: FeedbackStatus
replyMessage?: string
userName?: string
createAt: number
}
export enum FeedbackType {
Opinion,
Bug,
FunctionRequest,
Other,
}
export enum FeedbackStatus {
Padding,
Progressing,
Finish,
Todo,
Reject,
}