Newer
Older
smart-metering-front / src / api / system / bench.ts
MrTan on 14 Dec 2022 351 bytes 工作台折线图组件封装
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',
  })
}