自动路由-bug版

This commit is contained in:
2025-08-21 11:19:59 +08:00
parent 22ca45510b
commit 36950ab424
27 changed files with 677 additions and 133 deletions

View File

@ -8,3 +8,19 @@ export function getFileList(params: Record<string, string>) {
params,
});
}
//getMyList
export function getMyList(params: Record<string, string>) {
return request({
url: "/files/myfile",
method: "get",
params,
});
}
//putShare
export function putShare(data: Record<string, string>) {
return request({
url: `/files/${data.pid}`,
method: "put",
data,
});
}