bottomRight.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 style="position:relative;">
  16. <centerRight2Chart1 />
  17. <BottomRightChart />
  18. </div>
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. import centerRight2Chart1 from '@/components/dplechart/centerRight/centerRightChart'
  24. import BottomRightChart from "@/components/dplechart/bottom/bottomRightChart";
  25. export default {
  26. components: {
  27. BottomRightChart,
  28. centerRight2Chart1
  29. }
  30. };
  31. </script>
  32. <style lang="scss" class>
  33. $box-height: 520px;
  34. $box-width: 100%;
  35. #bottomRight {
  36. padding: 14px 16px;
  37. height: $box-height;
  38. width: $box-width;
  39. border-radius: 5px;
  40. .bg-color-black {
  41. height: $box-height - 30px;
  42. border-radius: 10px;
  43. }
  44. .text {
  45. color: #c3cbde;
  46. //font-size: 15px;
  47. }
  48. //下滑线动态
  49. .decoration2 {
  50. position: absolute;
  51. right: 0.125rem;
  52. }
  53. .chart-box {
  54. margin-top: 16px;
  55. width: 170px;
  56. height: 170px;
  57. .active-ring-name {
  58. padding-top: 10px;
  59. }
  60. }
  61. }
  62. </style>