1234567891011121314151617181920212223 |
- import request from '@/utils/request'
- // 事件来源,类型统计
- export function getEventSourceAndTypeStatistics(param) {
- return request({
- url: '/center-fire/VisuForestCloudBigDataController/getEventSourceAndTypeStatistics',
- method: 'post',
- data:param
- })
- }
- // 设备类型统计
- export function getCameaCount() {
- return request({
- url: '/center-fire/VisuForestCloudBigDataController/getCameaCount',
- method: 'post',
- })
- }
|