statisticAnalysis.js 488 Bytes
Newer Older
王晓倩's avatar
王晓倩 committed
1 2 3
import request from '@/utils/request'

// 燃气事故台账统计
4
export function troubleStatistic() {
王晓倩's avatar
王晓倩 committed
5 6
  return request({
    url: '/statistic/troubleStatistic',
7
    method: 'get'
王晓倩's avatar
王晓倩 committed
8 9 10 11
  })
}

// 隐患整治台账统计
12
export function hiddenStatistic() {
王晓倩's avatar
王晓倩 committed
13 14
  return request({
    url: '/statistic/hiddenStatistic',
15 16 17 18 19 20 21 22 23
    method: 'get'
  })
}

// 隐患整治台账统计
export function homepageStatistic() {
  return request({
    url: '/statistic/homepageStatistic',
    method: 'get'
王晓倩's avatar
王晓倩 committed
24 25
  })
}