Blame view

src/components/VEquipment.vue 1.84 KB
59d4d9d6   liuqimichale   设备
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
  <template>
      <div class="theme-wrap">
          <card-title> <span>设备监控消息</span></card-title>
          <div class="theme-body">
              <account-num>
                  <span>总计</span>
              </account-num>
              <ul class="income-echart">
                  <li>
                      <pie-echart :chart-data="pieChartData"></pie-echart>
                  </li>
                  <li class="berth-inf">
                      <p><span class="free-berth">11834</span><span>空余</span></p>
                      <p><span class="buss-berth">4496</span><span>占有</span></p>
                  </li>
              </ul>
          </div>
      </div>
  </template>
  
  <script>
  import CardTitle from './base/CardTitle'
  import AccountNum from './base/AccountNum'
  import PieEchart from './base/PieEchart'
  export default {
    name: 'VEquipment',
    components: {
      CardTitle,
      AccountNum,
      PieEchart
    },
    data() {
      return {
        pieChartData: {
          yData: [1,1],
          legendData: ['空余','占有']
        },
      }
    },
    mounted(){
      //this.drawBar();
    },
    methods: {
  
    }
  }
  </script>
  
  <style scoped lang="scss">
      .theme-wrap {
          height: 100%;
      }
      .theme-body {
          height: calc(100% - 30px);
          margin-left: 20px;
      }
      .income-echart{
          height: 70%;
          display: flex;
          >li{
              flex: 1;
          }
          .berth-inf{
              p{
                  height: 50%;
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  padding-right: 20px;
              }
              .free-berth{
                  @include fontStyle(24px);
                  background-image: $fontBlue;
              }
              .buss-berth{
                  @include fontStyle(24px);
                  background-image: $fontOrange;
              }
          }
      }
  
  </style>