bigdata.js 458 B

1234567891011121314151617181920212223
  1. import request from '@/utils/request'
  2. // 事件来源,类型统计
  3. export function getEventSourceAndTypeStatistics(param) {
  4. return request({
  5. url: '/center-fire/VisuForestCloudBigDataController/getEventSourceAndTypeStatistics',
  6. method: 'post',
  7. data:param
  8. })
  9. }
  10. // 设备类型统计
  11. export function getCameaCount() {
  12. return request({
  13. url: '/center-fire/VisuForestCloudBigDataController/getCameaCount',
  14. method: 'post',
  15. })
  16. }