统计中心-》添加部门统计逻辑

This commit is contained in:
Guoxianpeng
2026-04-16 10:31:54 +08:00
parent 906684c1ed
commit fb8ae6878c
4 changed files with 454 additions and 0 deletions
+12
View File
@@ -82,3 +82,15 @@ export function completeAppointment(params: any) {
export function getDoctorStatistics(params: any) {
return request.get({ url: '/doctor.statistics/lists', params })
}
// ========== 部门统计 ==========
// 获取部门列表
export function getDeptList() {
return request.get({ url: '/dept.dept/all' })
}
// 获取部门统计
export function getDeptStatistics(params: any) {
return request.get({ url: '/doctor.statistics/deptLists', params })
}