percent-card-2.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <div class="percent-card">
  3. <div class="card-chart">
  4. <percent-bar width="13vh" height="13vh" :value="percent" :nameVa="PercentName" :color="color" />
  5. <div class="card-title gray">{{ title }}</div>
  6. </div>
  7. <div class="card-info">
  8. <div class="card-value">
  9. <span class="value-text newBlue">{{ TotalText }}</span>
  10. <span class="newwhite">{{ TotalValue.toFixed(2) }}</span>
  11. </div>
  12. <div class="card-value">
  13. <span class="value-text newBlue">{{ ActualText }}</span>
  14. <span class="newwhite">{{ ActualValue * 10 }}</span>
  15. </div>
  16. <div class="card-value">
  17. <span class="value-text newBlue">{{ PercentText }}</span>
  18. <span class="newwhite">{{ PercentValue }}</span>
  19. </div>
  20. </div>
  21. </div>
  22. </template>
  23. <script>
  24. // 百分比card2
  25. // 使用位置 驾驶舱首页 计划电量完成情况 中的百分比卡片
  26. import PercentBar from "./percent-bar.vue";
  27. export default {
  28. created() {},
  29. components: {
  30. PercentBar,
  31. },
  32. props: {
  33. title: {
  34. type: String,
  35. default: "月计划完成率",
  36. },
  37. PercentName: {
  38. type: String,
  39. default: "",
  40. },
  41. TotalText: {
  42. type: String,
  43. default: "实际",
  44. },
  45. TotalValue: {
  46. type: Number,
  47. String,
  48. default: 0,
  49. },
  50. ActualText: {
  51. type: String,
  52. default: "计划",
  53. },
  54. ActualValue: {
  55. type: Number,
  56. String,
  57. default: 0,
  58. },
  59. PercentText: {
  60. type: String,
  61. default: "计划",
  62. },
  63. PercentValue: {
  64. type: Number,
  65. String,
  66. default: 0,
  67. },
  68. color: {
  69. type: String,
  70. default: "green",
  71. },
  72. },
  73. computed: {
  74. percent() {
  75. return this.TotalValue === 0 || this.ActualValue === 0 ?
  76. 0 :
  77. parseInt((this.TotalValue / this.ActualValue) * 100);
  78. },
  79. },
  80. };
  81. </script>
  82. <style lang="less" scoped>
  83. .percent-card {
  84. display: flex;
  85. .card-chart {
  86. flex: 1 1 5.926vh;
  87. }
  88. .card-title {
  89. text-align: center;
  90. width: 100%;
  91. margin-top: 1.481vh;
  92. font-size: 12px;
  93. }
  94. .card-info {
  95. flex: auto;
  96. align-self: center;
  97. margin-left: 10px;
  98. margin-top: -0.4vh;
  99. .card-value {
  100. font-size: 14px;
  101. font-weight: 600;
  102. margin-bottom: 1.1111vh;
  103. white-space: nowrap;
  104. .value-text {
  105. margin-right: 10px;
  106. font-family: @font-family-num;
  107. }
  108. .newBlue{
  109. color: #4d72bb;
  110. }
  111. .newwhite{
  112. color: #c3e1ff;
  113. }
  114. }
  115. .card-text {
  116. font-size: @fontsize;
  117. }
  118. }
  119. }
  120. </style>