You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import request from '@/utils/request'
|
|
|
|
// 查询文件列表
|
|
export function listFile(query) {
|
|
return request({
|
|
url: '/sch/file/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
|
|
// 删除文件
|
|
export function delFile(data) {
|
|
return request({
|
|
url: '/sch/file',
|
|
method: 'delete',
|
|
data: data
|
|
})
|
|
}
|
|
|