zmc
2023-12-01 5244fdb5f7932f2cbce43f4bfaa9dc06c9dd4c95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!-- 雷达图
 
-->
<script>
import * as echarts from 'echarts';
export default {
  props: {
    // 属性
    name: {
      type: Array,
      default: () => {
        return [];
      }
    },
    // 数据
    yData: {
      type: Object,
      default: () => {
        return {};
      }
    }
  },
  data() {
    return {
      chart: null
    };
  },
  watch: {
    yData: {
      handler() {
        this.set()
      },
      deep:true
    }
  },
  mounted() {
    this.initRadarChart();
    window.addEventListener('resize', this.resizeChart);
  },
  computed:{
    valid(){
      return (this.yData.validRisk*100).toFixed(2)
    },
    exceptionRecurrence(){
      return (this.yData.exceptionTypeAggregation*100).toFixed(2)
    },
    exceptionTypeAggregation(){
      return (this.yData.exceptionTypeAggregation*100).toFixed(2)
    },
    exceeding(){
      return  (this.yData.exceedRisk*100).toFixed(2)
    },
    online(){
      return   (this.yData.onlineRisk*100).toFixed(2)
    }
  },
  methods: {
    
 
    initRadarChart() {
      this.chart = echarts.init(document.getElementById('main'));
    },
    set() {
      let option = {
        title: {
          text: '综合风险'
        },
        tooltip: {},
        radar: {
          // 边框颜色
          splitLine: {
            lineStyle: {
              // 使用深浅的间隔色
              color: ['#ddd', '#aaa']
            }
          },
      
          indicator: [
            { name: this.name[0] +' '+ this.valid+'%', max: 1 },
            { name: this.name[1] +' '+ this.exceptionRecurrence+'%', max: 1 },
            { name: this.name[2] +' '+ this.exceptionTypeAggregation+'%', max: 1 },
            { name: this.name[3] +' '+ this.exceeding+'%', max: 1 },
            { name: this.name[4] +' '+ this.online+'%', max: 1 }
 
          ],
 
          axisName: {
            color: '#428BD4',
            },
          legend: {
            borderColor: '#428BD4'
          }
        },
        series: [
          {
            type: 'radar',
            data: [
              {
                value: [
                  this.yData.validRisk.toFixed(4),
                  this.yData.typicalExceptionRepetitionRate,
                 this.yData.exceptionTypeAggregation,
                 this.yData.exceedRisk.toFixed(4),
                  this.yData.onlineRisk.toFixed(4)
                ],
   
                name: '异常分析'
              }
            ],
            label: {
              show: false,
            position: 'bottom',
            formatter: function(params) {
              return params.value*100+'%'
            }
            }
          }
        ]
      };
      this.chart.setOption(option);
    },
        // 跟页面响应式变化
        resizeChart() {
          this.chart.resize();
          // this.$nextTick(() => {
          //   if (this.chart) {
          //     this.chart.resize();
          //   }
          // });
      }
  }
};
</script>
 
<template>
  <div id="main" class="chart"></div>
</template>
 
<style scoped>
.chart {
  /* width: 650px; */
  width: 620px;
  height: 500px;
}
</style>