refacting: delete cloud comp

This commit is contained in:
simple321vip
2026-06-30 07:56:09 +08:00
parent 024f306636
commit 75169c70a5
10 changed files with 944 additions and 470 deletions
-31
View File
@@ -1,31 +0,0 @@
import { MockMethod } from 'vite-plugin-mock'
export default [
{
url: '/cloud/api/v1/file/list',
method: 'get',
response: ({ body, query }) => {
return [
{
server_filename: "java实战.pdf",
path: "/",
isDir: 0,
size: 1000
},
{
server_filename: "天道.pdf",
path: "/",
isDir: 0,
size: 1000
},
{
server_filename: "我得音乐",
path: "/",
isDir: 1,
size: 10001
},
]
}
},
] as MockMethod[]