推送任务进度操作历史,推送项目总览

This commit is contained in:
2026-05-10 16:38:39 +08:00
parent 9ce5cb8f2e
commit 47baa575df
195 changed files with 2767 additions and 5086 deletions

View 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'
})
}