bottomRight.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <div id="bottomRight">
  3. <div class="bg-color-black">
  4. <div class="d-flex pt-2 pl-2">
  5. <!-- <span>
  6. <icon name="chart-area" class="text-icon"></icon>
  7. </span> -->
  8. <div class="d-flex">
  9. <span class="fs-xl text mx-2">本月完成率</span>
  10. <div class="decoration2">
  11. <dv-decoration-2 :reverse="true" style="width:5px;height:6rem;" />
  12. </div>
  13. </div>
  14. </div>
  15. <div>
  16. <BottomRightChart />
  17. </div>
  18. </div>
  19. </div>
  20. </template>
  21. <script>
  22. import BottomRightChart from "@/components/echart/bottom/bottomRightChart";
  23. export default {
  24. components: {
  25. BottomRightChart
  26. }
  27. };
  28. </script>
  29. <style lang="scss" class>
  30. $box-height: 400px;
  31. $box-width: 100%;
  32. #bottomRight {
  33. padding: 14px 16px;
  34. height: $box-height;
  35. width: $box-width;
  36. border-radius: 5px;
  37. box-sizing: border-box;
  38. .bg-color-black {
  39. height: $box-height - 30px;
  40. border-radius: 10px;
  41. }
  42. .text {
  43. font-size: 12px;
  44. color: #c3cbde;
  45. }
  46. //下滑线动态
  47. .decoration2 {
  48. position: absolute;
  49. right: 0.125rem;
  50. }
  51. .chart-box {
  52. margin-top: 16px;
  53. width: 170px;
  54. height: 170px;
  55. .active-ring-name {
  56. padding-top: 10px;
  57. }
  58. }
  59. }
  60. </style>