首页大型更新,修正通信ui

This commit is contained in:
2024-12-30 16:44:53 +08:00
parent a23c049c7d
commit 28e379aa2a
26 changed files with 929 additions and 399 deletions

View File

@@ -8,6 +8,14 @@ export function listFinance(query) {
params: query
})
}
// 查询进出账管理列表
export function pieData(query) {
return request({
url: '/oa/finance/pieData',
method: 'get',
params: query
})
}
// 查询进项目出账管理列表
export function listFinancePro(query) {

View File

@@ -23,6 +23,13 @@ export function projectData() {
method: 'get'
})
}
// 查询项目管理详细
export function projectDataByMonthAndDate() {
return request({
url: '/oa/project/projectDataByMonthAndDate',
method: 'get'
})
}
// 新增项目管理
export function addProject(data) {