|
@@ -1,10 +1,30 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="chart-wrap">
|
|
<div class="chart-wrap">
|
|
|
<div class="child c-1">
|
|
<div class="child c-1">
|
|
|
- <div class="cr cr-1">100%</div>
|
|
|
|
|
- <div class="cr cr-2">100%</div>
|
|
|
|
|
- <div class="cr cr-3">100%</div>
|
|
|
|
|
- <div class="cr cr-4">100%</div>
|
|
|
|
|
|
|
+ <div class="cr">
|
|
|
|
|
+ <div class="cr-1">
|
|
|
|
|
+ 100%
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <span class="label">第一季度</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="cr">
|
|
|
|
|
+ <div class="cr-2">
|
|
|
|
|
+ 100%
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <span class="label">第二季度</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="cr">
|
|
|
|
|
+ <div class="cr-3">
|
|
|
|
|
+ 100%
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <span class="label">第三季度</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="cr">
|
|
|
|
|
+ <div class="cr-4">
|
|
|
|
|
+ 100%
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <span class="label">第四季度</span>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="child c-2">
|
|
<div class="child c-2">
|
|
|
<v-chart autoresize :option="option"/>
|
|
<v-chart autoresize :option="option"/>
|
|
@@ -183,18 +203,47 @@ $xHeight: 120px;
|
|
|
background-size: contain;
|
|
background-size: contain;
|
|
|
background-position: center;
|
|
background-position: center;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
|
|
+ flex-direction: column;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
- font-size: 1.2vw;
|
|
|
|
|
|
|
+
|
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
|
color: white;
|
|
color: white;
|
|
|
|
|
|
|
|
- &.cr-1, &.cr-3 {
|
|
|
|
|
|
|
+ .label {
|
|
|
|
|
+ height: 20px;
|
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ margin-bottom: -10px;
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ mso-font-width: 400;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .cr-1, .cr-3 {
|
|
|
|
|
+ flex-grow: 1;
|
|
|
|
|
+ font-size: 1.2vw;
|
|
|
|
|
+ width: 100%;
|
|
|
background-image: url("/static/images/shoudian_circular_1@2x.png");
|
|
background-image: url("/static/images/shoudian_circular_1@2x.png");
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-size: auto 100%;
|
|
|
|
|
+ background-position: center center;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- &.cr-2, &.cr-4 {
|
|
|
|
|
|
|
+ .cr-2, .cr-4 {
|
|
|
|
|
+ flex-grow: 1;
|
|
|
|
|
+ font-size: 1.2vw;
|
|
|
|
|
+ width: 100%;
|
|
|
background-image: url("/static/images/shoudian_circular_2@2x.png");
|
|
background-image: url("/static/images/shoudian_circular_2@2x.png");
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-size: auto 100%;
|
|
|
|
|
+ background-position: center center;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|