添加上传图片

This commit is contained in:
2025-06-15 21:53:50 +08:00
parent 4556eb71d8
commit 4caa3b061a
7 changed files with 63 additions and 5 deletions

View File

@@ -131,3 +131,14 @@ export const Submission = {
return res.data
},
}
export const Helper = {
async upload(file: File) {
const form = new window.FormData()
form.append("image", file)
const res = await http.post("/upload/", form, {
headers: { "content-type": "multipart/form-data" },
})
return !!res.data.url ? res.data.url : ""
},
}