代理机构汇总

This commit is contained in:
吴红兵
2026-02-25 13:34:26 +08:00
parent 25e0772548
commit e932bd8963
2 changed files with 165 additions and 3 deletions

View File

@@ -76,3 +76,19 @@ export function delObj(id: string | number) {
});
}
/**
* 代理汇总(按条件统计各代理的项目数、预算金额、合同金额)
*/
export function getAgentSummary(params?: {
deptCode?: string
planStartDate?: string
planEndDate?: string
hasAcceptEvaluation?: string
}) {
return request({
url: '/purchase/purchasingagent/summary',
method: 'get',
params
});
}