WindturbineMinCard.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* 风机矩阵小卡片 */
  2. <template>
  3. <div :class="cardStyle">
  4. <el-row>
  5. <el-col span="12">
  6. <div :class="leftStyle">
  7. <el-row>
  8. <div :class="title1Style">SG</div>
  9. </el-row>
  10. <el-row>
  11. <div :class="title2Style">223</div>
  12. </el-row>
  13. </div>
  14. </el-col>
  15. <el-col span="12">
  16. <div :class="rightStyle">
  17. <el-row>
  18. <div :class="contentStyle">123.54 kw</div>
  19. </el-row>
  20. <el-row>
  21. <div :class="contentStyle">8.23 m/s</div>
  22. </el-row>
  23. <el-row>
  24. <div :class="contentStyle">1234.56 rpm</div>
  25. </el-row>
  26. </div>
  27. </el-col>
  28. </el-row>
  29. </div>
  30. </template>
  31. <script>
  32. export default {
  33. name: "WindturbineMinCard",
  34. props: {
  35. status: String,
  36. },
  37. computed: {
  38. cardStyle: function () {
  39. return "card-style-" + this.status;
  40. },
  41. leftStyle: function () {
  42. return "card-left-style-" + this.status;
  43. },
  44. rightStyle: function () {
  45. return "card-right-style-" + this.status;
  46. },
  47. title1Style: function () {
  48. return "card-title1-style-" + this.status;
  49. },
  50. title2Style: function () {
  51. return "card-title2-style-" + this.status;
  52. },
  53. contentStyle: function () {
  54. return "card-content-style-" + this.status;
  55. }
  56. },
  57. };
  58. </script>
  59. <style scoped>
  60. .card-style-1 {
  61. position: relative;
  62. width: 120px;
  63. height: 50px;
  64. border: 2px solid #4952a6;
  65. background-color: rgba(73, 82, 166, 0.5);
  66. box-sizing: border-box;
  67. display: inline-block;
  68. }
  69. .card-left-style-1 {
  70. position: relative;
  71. width: 25px;
  72. height: 41px;
  73. background-color: rgba(73, 82, 166, 0.7);
  74. box-sizing: border-box;
  75. margin: 3px;
  76. display: inline-block;
  77. }
  78. .card-right-style-1 {
  79. position: relative;
  80. width: calc(120px - 4px - 6px - 25px);
  81. height: calc(50px - 2px);
  82. border-left: 2px dashed #4952a6;
  83. box-sizing: border-box;
  84. display: inline-block;
  85. }
  86. .card-title1-style-1 {
  87. margin-top: 2px;
  88. font-size: 14px;
  89. width: 100%;
  90. text-align: center;
  91. }
  92. .card-title2-style-1 {
  93. margin-top: 2px;
  94. font-size: 10px;
  95. width: 100%;
  96. text-align: center;
  97. }
  98. .card-content-style-1 {
  99. width: 100%;
  100. text-align: right;
  101. font-size: 5px;
  102. }
  103. </style>