import request from '../index' const prefix = '/workbench' // 培训计划统计 export function getStatistic() { return request({ url: `${prefix}/meterTrainStatistic`, method: 'post', }) } // 计量人员统计 export function getStaffSStatistic() { return request({ url: `${prefix}/meterStaffStatistic`, method: 'post', }) }