import req from '@/request.js' const portal = window.context.portal export default { //获取统计次数 statisticsWarn(data, cb) { req.post(portal + `/performanceAnalysis/v1/statisticsWarn`, data).then(res => { res && cb(res.data) }) }, //根据设备类型统计分析 deviceType(productType, cb) { req.get(portal + `/device/data/statistics/` + productType).then(res => { res && cb(res.data) }) }, //获取下转 statisticsWarnSub(data, cb) { req.post(portal + `/performanceAnalysis/v1/statisticsWarnSub`, data).then(res => { res && cb(res.data) }) }, }