| | |
| | | public mutPieVisitorList: Array<number> = []; |
| | | public mutAnalysisList: Array<number> = []; |
| | | public warnCount: Number = 0; |
| | | public warnInfo: Object = {}; |
| | | public personList: Array<object> = []; |
| | | public isShow: Boolean = false; |
| | | public dataStatus: String = ""; |
| | |
| | | this.mutAnalysisList = [] |
| | | //当前预警总数 |
| | | this.warnCount = 0 |
| | | //当前预警信息 |
| | | this.warnInfo = {} |
| | | //预警列表数据 |
| | | this.personList = [] |
| | | this.isShow = false |
| | |
| | | const res: any = await statisticsComprehensive({}) |
| | | // console.log(res,'当前预警总数') |
| | | if (res && res.success) { |
| | | this.warnCount = res.data |
| | | //this.warnCount = res.data |
| | | this.warnInfo = res.data |
| | | } |
| | | } |
| | | |