Files
mes-ui-d2/src/api/system-administration/operation-logs.js

16 lines
347 B
JavaScript
Raw Normal View History

import { request } from '@/api/_service'
const BASE = 'system_settings/system_assistant/operate_log/'
export function getOperateLogList (data) {
return request({
url: BASE + 'list',
method: 'get',
params: {
method: 'system_settings_system_assistant_operate_log_list',
platform: 'background',
...data
}
})
}