oa更新项目总览

This commit is contained in:
2026-06-08 10:11:33 +08:00
parent 3334248847
commit 79e536aeca
5 changed files with 800 additions and 0 deletions

View File

@@ -161,4 +161,22 @@ export function getMaxCode (codeType) {
url: '/oa/project/maxCode/' + codeType,
method: 'get',
})
}
/** 项目总览4 项统计卡片(总数/完成/未完成/逾期) */
export function getProjectOverviewStats (query) {
return request({
url: '/oa/project/overview/stats',
method: 'get',
params: query
})
}
/** 项目总览:仅返回已绑定进度的项目分页列表 */
export function listOverviewProject (query) {
return request({
url: '/oa/project/overview/list',
method: 'get',
params: query
})
}