wms-antdvue/.svn/pristine/f0/f07ed200ae70a79c02f0dc4e3d1857a551afc665.svn-base
2024-11-07 16:33:03 +08:00

44 lines
783 B
Plaintext

import { http } from '@/utils/http/axios';
/**
* @description: 文件日志列表
*/
export function getFileLogList(params?) {
return http.request({
url: '/admin/file/log/page',
method: 'GET',
params,
});
}
/**
* @description: 根据ID获取详情
*/
export function getFileLogDetail(id) {
return http.request({
url: '/admin/file/log/detail/' + id,
method: 'get',
});
}
/**
* @description: 删除文件日志
*/
export function fileLogDelete(id) {
return http.request({
url: '/admin/file/log/delete/' + id,
method: 'DELETE',
});
}
/**
* @description: 批量删除文件日志
*/
export function fileLogBatchDelete(data: any) {
return http.request({
url: '/admin/file/log/batchDelete',
method: 'DELETE',
data,
});
}