2026-06-13 10:40:26 +08:00
|
|
|
import request from '@/utils/request'
|
|
|
|
|
const baseUrl = '/bid/operationLog'
|
2026-06-18 20:17:02 +08:00
|
|
|
|
2026-06-13 10:40:26 +08:00
|
|
|
export const listOperationLog = (params) => request({ url: baseUrl + '/list', method: 'get', params })
|
2026-06-18 20:17:02 +08:00
|
|
|
|
|
|
|
|
export const getOperationLog = (operId) => request({ url: baseUrl + '/' + operId, method: 'get' })
|
|
|
|
|
|
|
|
|
|
export const deleteOperationLog = (operIds) => request({ url: baseUrl + '/' + operIds, method: 'delete' })
|
|
|
|
|
|
|
|
|
|
export const cleanOperationLog = () => request({ url: baseUrl + '/clean', method: 'delete' })
|
|
|
|
|
|
|
|
|
|
export const exportOperationLog = (params) => request({ url: baseUrl + '/export', method: 'post', data: params, responseType: 'blob' })
|
|
|
|
|
|
|
|
|
|
export const getOperationLogStats = (params) => request({ url: baseUrl + '/stats', method: 'get', params })
|
|
|
|
|
|
|
|
|
|
export const getOperationLogModules = () => request({ url: baseUrl + '/modules', method: 'get' })
|