feat: upload page

This commit is contained in:
zzc
2025-05-09 15:41:44 +08:00
parent c0b08f6c3b
commit c5408ac63d
7 changed files with 139 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
import request from '@/utils/request'
export function getList(data) {
return request({
url: '/management/api/uploaded_file/list',
method: 'get',
params: data,
})
}