whychdw
2021-03-02 42b0de526257f31c986dd802bdd86db205ed7788
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
<template>
  <div class="test-container">
<!--    <div class="test-wrapper">-->
<!--      <circle-chart id="circleTest" ref="circleTest"></circle-chart>-->
<!--    </div>-->
    <div class="test-wrapper mg8">
      <div class></div>
      <div class="layout-box-wrapper">
        <div class="layout-box-header">单体容量</div>
      </div>
    </div>
  </div>
</template>
 
<script>
 
export default {
  name: "Test",
  components: {},
  data() {
    return {}
  },
  mounted() {}
}
</script>
 
<style scoped>
.test-wrapper {
  width: 500px;
  height: 500px;
}
.mg8 {
  margin: 8px;
}
.layout-box-wrapper {
  position: relative;
  height: 100%;
  background-color: #021651;
  border-radius: 12px;
  border: 1px solid #073980;
}
</style>