feat(NoteForm): 增加文件上传状态反馈

This commit is contained in:
JefferyHcool
2025-06-19 14:54:51 +08:00
parent 2b0fb8f4ad
commit d92cc4a977
24 changed files with 777 additions and 374 deletions

View File

@@ -19,6 +19,6 @@ class ResponseWrapper:
def error(msg="error", code=500, data=None):
return JSONResponse(content={
"code": code,
"msg": msg,
"msg": str(msg),
"data": data
})