Merge branch 'master' into gancao

This commit is contained in:
Your Name
2026-04-16 11:33:58 +08:00
6 changed files with 741 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 })
}