金五联管理系统PC前端
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.
jwl-manage-web/src/api/sch/file.js

21 lines
320 B

2 years ago
import request from '@/utils/request'
// 查询文件列表
export function listFile(query) {
return request({
url: '/sch/file/list',
method: 'get',
params: query
})
}
2 years ago
// 删除文件
export function delFile(data) {
2 years ago
return request({
url: '/sch/file',
2 years ago
method: 'delete',
2 years ago
data: data
})
}