推送任务进度操作历史,推送项目总览
This commit is contained in:
28
ruoyi-ui/src/api/oa/projectOperationLog.js
Normal file
28
ruoyi-ui/src/api/oa/projectOperationLog.js
Normal file
@@ -0,0 +1,28 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询操作历史列表(分页)
|
||||
export function listOperationLog(query) {
|
||||
return request({
|
||||
url: '/oa/projectOperationLog/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询操作历史详情
|
||||
export function getOperationLog(logId) {
|
||||
return request({
|
||||
url: '/oa/projectOperationLog/' + logId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出操作历史
|
||||
export function exportOperationLog(query) {
|
||||
return request({
|
||||
url: '/oa/projectOperationLog/export',
|
||||
method: 'post',
|
||||
params: query,
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user