postdischarge-ui/src/api/system/followupstatistics.js
2024-11-07 14:57:27 +08:00

20 lines
428 B
JavaScript

import request from '@/utils/request'
// 随访明细表查询
export function getFollowUpDetail(query) {
return request({
url: '/system/statistics/getFollowUpDetail',
method: 'get',
params: query
})
}
// 随访成功率统计
export function getFollowUpRate(query) {
return request({
url: `/system/statistics/getFollowUpRate`,
method: 'get',
params: query
})
}