admin
2024-09-26 dd4b7015b8466e454d6d8ec2352586f255f33412
提交 | 用户 | 时间
dd4b70 1 <template>
A 2   <div id="bottomLeft">
3     <div class="bg-color-black">
4       <div class="d-flex pt-2 pl-2">
5         <span>
6           <icon name="chart-bar" style="background-color: #ffffff" class="text-icon"></icon>
7         </span>
8         <div class="d-flex">
9           <span class="fs-xl text mx-2">近七日工单完成状态总览</span>
10         </div>
11       </div>
12       <div>
13         <BottomLeftChart />
14       </div>
15     </div>
16   </div>
17 </template>
18
19 <script>
20 import BottomLeftChart from '@/components/echart/bottom/bottomLeftChart'
21 export default {
22   components: {
23     BottomLeftChart
24   }
25 }
26 </script>
27
28 <style lang="scss" scoped>
29 $box-height: 520px;
30 $box-width: 100%;
31 #bottomLeft {
32   padding: 20px 16px;
33   height: $box-height;
34   width: $box-width;
35   border-radius: 5px;
36   .bg-color-black {
37     height: $box-height - 35px;
38     border-radius: 10px;
39   }
40   .text {
41     color: #c3cbde;
42     font-size: 16px;
43     margin-top: -1px;
44   }
45   .chart-box {
46     margin-top: 16px;
47     width: 170px;
48     height: 170px;
49     .active-ring-name {
50       padding-top: 10px;
51     }
52   }
53 }
54 </style>