123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <template>
- <div class="yui-tree-box">
- <project-item-tree @treeclick="treeclick" iconfontClass="el-icon-place"></project-item-tree>
- <div class="hui-tree-content">
- <div class="vrv box-background">
- <div class="vrv-box">
- <div class="vrv-center">
- <test-alarm ref="testAlarm" :type="24"></test-alarm>
- <div class="bim-box">
- <model type="vrv" fileId="10000786668082"></model>
- </div>
- </div>
- <div class="vrv-right">
- <div class="vrv-chart hui-flex">
- <div class="hui-chart-title">
- 统计分析
- </div>
- <div ref="chart1" class="hui-flex-box"></div>
- </div>
- <div class="vrv-list">
- <div class="alarm-table-box hui-flex">
- <div class="alarm-title">
- <div class="hui-chart-title">
- 多联机报警
- </div>
- <div class="alarm-tr">
- <span class="tr-100">设备名称</span>
- <span class="tr-130">报警时间</span>
- <span class="tr-50">状态</span>
- </div>
- </div>
- <div class="hui-flex-box hui-no-tips" v-if="list.length === 0">
- <empty width="100" description="暂无报警记录"></empty>
- </div>
- <div class="alarm-table hui-flex-box" v-else>
- <div class="alarm-tr" v-for="(item,index) in list" :key="index">
- <span class="tr-100 hui-ellipsis">{{item.deviceName}}</span>
- <span class="tr-130">{{item.date}}</span>
- <span class="tr-50 tr-center">
- <span class="color-red" v-if="!item.state">报警中</span>
- <span class="color-blue" v-else-if="item.state === 1">处理中</span>
- <span class="color-green" v-else-if="item.state === 2">已处理</span>
- </span>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import projectItemTree from '@/components/common/projectItemTree'
- import testAlarm from '@/components/work/common/testAlarm'
- import model from '@/components/work/common/model'
- import {
- getDeviceAlarmList
- } from '@/httpApi/test'
- export default {
- data() {
- return {
- list: [],
- type: 25
- }
- },
- created() {
- this.init();
- },
- components: {
- testAlarm,
- projectItemTree,
- model
- },
- methods: {
- init(option) {
- let postData = {
- type: this.type,
- projectId: this.$store.getters.project.id
- }
- if (option) postData = Object.assign(postData, option);
- getDeviceAlarmList(postData).then(res => {
- if (res.state) {
- this.list = res.data;
- let obj = {},
- list = [];
- for (let i = 0; i < this.list.length; i++) {
- if (!obj[this.list[i].deviceId]) {
- obj[this.list[i].deviceId] = 1;
- list.push({
- id: this.list[i].deviceId,
- name: this.list[i].deviceName,
- value: 0,
- })
- }
- list.find(node => node.id == this.list[i].deviceId).value++;
- }
- this.$nextTick(() => {
- this.chart(this.$refs.chart1, list.map(node => node.value), list.map(
- node =>
- node.name))
- })
- }
- })
- },
- treeclick(item) {
- let obj = item.id ? {
- projectItemTargetId: item.id
- } : {}
- if (this.$refs.testAlarm) this.$refs.testAlarm.init(obj);
- this.init(obj);
- },
- chart(elem, data, x) {
- let chart = echarts.init(elem);
- let option = {
- tooltip: {
- show: true,
- trigger: 'axis',
- formatter: function() {
- return ''
- },
- backgroundColor: 'rgba(255,255,255,0)',
- borderWidth: 0,
- padding: 0,
- axisPointer: {
- lineStyle: {
- type: 'solid',
- color: '#4E5561',
- }
- }
- },
- grid: {
- left: '15',
- top: '25',
- right: '15',
- bottom: '5',
- containLabel: true
- },
- color: ['#1978E5'],
- xAxis: {
- type: 'category',
- data: x,
- axisLabel: {
- margin: 4,
- color: '#D0DEEE',
- fontSize: 10
- },
- boundaryGap: false,
- axisLine: {
- lineStyle: {
- color: '#6C8097'
- }
- },
- axisTick: {
- show: false
- }
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- margin: 10,
- color: '#D0DEEE',
- fontSize: 10
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: 'rgba(108,128,151,0.3)',
- type: 'dashed'
- }
- }
- },
- series: [{
- data: data,
- type: 'line',
- symbolSize: 6,
- areaStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(0,150,255,0.15)'
- },
- {
- offset: 1,
- color: 'rgba(0,150,255,0)'
- }
- ])
- },
- z: 99
- }, {
- data: data,
- type: 'line',
- showSymbol: false,
- label: {
- show: true,
- color: '#D0DEEE'
- },
- areaStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(0,150,255,0.15)'
- },
- {
- offset: 1,
- color: 'rgba(0,150,255,0)'
- }
- ])
- },
- z: 99
- }]
- };
- chart.setOption(option);
- },
- },
- }
- </script>
- <style lang="scss">
- .vrv {
- width: 100%;
- height: 100%;
- padding: 20px;
- overflow: auto;
- .vrv-box {
- width: 100%;
- height: 100%;
- min-width: 1100px;
- min-height: 699px;
- display: flex;
- }
- .vrv-center {
- flex: 1;
- width: 0;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .vrv-right {
- height: 100%;
- width: 350px;
- margin-left: 12px;
- display: flex;
- flex-direction: column;
- }
- .vrv-chart {
- height: 306px;
- background: rgba(0, 4, 10, 0.3);
- padding: 20px;
- }
- .vrv-list {
- margin-top: 12px;
- background: rgba(0, 4, 10, 0.3);
- flex: 1;
- height: 0;
- }
- }
- </style>
|