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 }) }