feat: file upload and remove

This commit is contained in:
zchengo
2023-01-30 15:48:42 +08:00
parent a0d9f3ceb4
commit 3902d51d11
7 changed files with 111 additions and 14 deletions
+9
View File
@@ -8,3 +8,12 @@ export function initDatabase(param) {
data: param,
})
}
// 文件移除
export function fileRemove(param) {
return request({
url: '/common/file/remove',
method: 'delete',
data: param,
})
}