1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <div id="bottomRight">
- <div class="bg-color-black">
- <div class="d-flex pt-2 pl-2">
- <!-- <span>
- <icon name="chart-area" class="text-icon"></icon>
- </span> -->
- <div class="d-flex">
- <span class="fs-xl text mx-2">本月完成率</span>
- <div class="decoration2">
- <dv-decoration-2 :reverse="true" style="width:5px;height:6rem;" />
- </div>
- </div>
- </div>
- <div>
- <BottomRightChart />
- </div>
- </div>
- </div>
- </template>
- <script>
- import BottomRightChart from "@/components/echart/bottom/bottomRightChart";
- export default {
- components: {
- BottomRightChart
- }
- };
- </script>
- <style lang="scss" class>
- $box-height: 400px;
- $box-width: 100%;
- #bottomRight {
- padding: 14px 16px;
- height: $box-height;
- width: $box-width;
- border-radius: 5px;
- box-sizing: border-box;
- .bg-color-black {
- height: $box-height - 30px;
- border-radius: 10px;
- }
- .text {
- font-size: 12px;
- color: #c3cbde;
- }
- //下滑线动态
- .decoration2 {
- position: absolute;
- right: 0.125rem;
- }
- .chart-box {
- margin-top: 16px;
- width: 170px;
- height: 170px;
- .active-ring-name {
- padding-top: 10px;
- }
- }
- }
- </style>
|