2023西安数博会CIM演示-【前端】-Web
AdaKing88
2023-08-21 bc03b832caa49bbcd2674fe4cae3701b5059bf95
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
<!--
 * @Author: qiminghui 
 * @Date: 2023-05-12 16:51:16
 * @LastEditors: qiminghui
 * @LastEditTime: 2023-05-12 20:11:17
 * @FilePath: \bigScreen\src\components\riskMonitor\integrated\leftCharts\RiskAssessment.vue
 * @Description: 
 * 
 * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
-->
<template>
  <div class="riskAssessmentContainer">
    <div class="titles clearfix tc">
      <div class="left fl">事故高发月份</div>
      <div class="middle fl">评估得分</div>
      <div class="right fl">事故高发类别</div>
    </div>
    <div class="main clearfix">
      <div class="left fl">
        <HighMonth />
      </div>
      <div class="middle fl">
        <Score />
      </div>
      <div class="right fl">
        <HighType />
      </div>
    </div>
  </div>
</template>
 
<script>
import HighMonth from "./HighMonth";
import Score from "./Score";
import HighType from "./HighType";
export default {
  name: "riskAssessment",
  components: {
    HighMonth,
    Score,
    HighType,
  },
  data() {
    return {};
  },
  methods: {},
};
</script>
 
<style lang="scss" scoped>
.riskAssessmentContainer {
  height: 100%;
  padding: 110px 0 30px 30px;
  box-sizing: border-box;
  position: relative;
 
  .left {
    width: 230px;
    height: 100%;
  }
 
  .middle {
    width: 204px;
    margin: 0 40px;
    height: 100%;
  }
 
  .right {
    width: 276px;
    height: 100%;
  }
 
  .titles {
    position: absolute;
    top: 60px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 12px;
  }
 
  .main {
    height: 100%;
    background: no-repeat url("./dotBg.png");
    background-size: auto 100%;
  }
}
</style>