Newer
Older
xc-metering-front / src / api / eqpt / dashboard / index.ts
liyaguang on 22 Sep 2023 345 bytes feat(*): 首页静态页面
/**
 * 首页接口
 */
import request from '@/api/index'

// 检定统计
export function getMeasureDetail() {
  return request({
    url: '/board/check/summary',
    method: 'get',
  })
}
// 检定统计趋势 - echart数据
export function getMeasureDetailTrend() {
  return request({
    url: '/board/check/trend',
    method: 'get',
  })
}