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

40 lines
749 B
Plaintext

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