dustFallDevice.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <div class="dustFallDevice">
  3. <div class="fall-left-box">
  4. <div class="box-left-t">
  5. <img src="../../../../../assets/images/dust/dusthome/sbzs.png" class="item-icon" alt="">
  6. <div class="item-label">设备总数</div>
  7. <div class="item-val">{{ deviceTotal }}</div>
  8. </div>
  9. <div class="box-left-b">
  10. <img src="../../../../../assets/images/dust/dusthome/pwkqs.png" class="item-icon" alt="">
  11. <div class="item-label">喷雾开启数</div>
  12. <div class="item-val">{{ pwTotal }}</div>
  13. </div>
  14. <div class="box-right-t">
  15. <img src="../../../../../assets/images/dust/dusthome/lwsl.png" class="item-icon" alt="">
  16. <div class="item-label">联网数量</div>
  17. <div class="item-val">{{ interTotal }}</div>
  18. </div>
  19. <div class="box-right-b">
  20. <img src="../../../../../assets/images/dust/dusthome/dwsl.png" class="item-icon" alt="">
  21. <div class="item-label">断网数量</div>
  22. <div class="item-val">{{ unInterTotal }}</div>
  23. </div>
  24. </div>
  25. </div>
  26. </template>
  27. <script setup lang="ts">
  28. import { ref, reactive, defineProps, watch } from 'vue'
  29. let props = defineProps({
  30. deviceTotal: {
  31. type: Number,
  32. default: 0
  33. },
  34. pwTotal: {
  35. type: Number,
  36. default: 0
  37. },
  38. interTotal: {
  39. type: Number,
  40. default: 0
  41. },
  42. unInterTotal: {
  43. type: Number,
  44. default: 0
  45. },
  46. pwData: {
  47. type: Array,
  48. default: () => {
  49. return []
  50. }
  51. }
  52. })
  53. </script>
  54. <style lang="less" scoped>
  55. .dustFallDevice {
  56. position: relative;
  57. justify-content: space-between;
  58. width: 100%;
  59. height: 100%;
  60. background: url('../../../../../assets/images/dust/dusthome/img-8.png') no-repeat center;
  61. background-size: auto 100%;
  62. .fall-left-box {
  63. position: relative;
  64. width: 100%;
  65. height: 100%;
  66. .box-left-t {
  67. display: flex;
  68. position: absolute;
  69. top: 10px;
  70. left: 30px;
  71. flex-direction: column;
  72. align-items: center;
  73. justify-content:flex-start;
  74. width: 100px;
  75. height: 105px;
  76. background: url('../../../../../assets/images/dust/dusthome/img-9.png') no-repeat center;
  77. background-size: 100% 100%;
  78. }
  79. .box-left-b {
  80. display: flex;
  81. position: absolute;
  82. top: 10px;
  83. right: 30px;
  84. flex-direction: column;
  85. align-items: center;
  86. justify-content:flex-start;
  87. width: 100px;
  88. height: 105px;
  89. background: url('../../../../../assets/images/dust/dusthome/img-9.png') no-repeat center;
  90. background-size: 100% 100%;
  91. }
  92. .box-right-t {
  93. display: flex;
  94. position: absolute;
  95. bottom: 10px;
  96. left: 30px;
  97. flex-direction: column;
  98. align-items: center;
  99. justify-content:flex-start;
  100. width: 100px;
  101. height: 105px;
  102. background: url('../../../../../assets/images/dust/dusthome/img-9.png') no-repeat center;
  103. background-size: 100% 100%;
  104. }
  105. .box-right-b {
  106. display: flex;
  107. position: absolute;
  108. right: 30px;
  109. bottom: 10px;
  110. flex-direction: column;
  111. align-items: center;
  112. justify-content:flex-start;
  113. width: 100px;
  114. height: 105px;
  115. background: url('../../../../../assets/images/dust/dusthome/img-9.png') no-repeat center;
  116. background-size: 100% 100%;
  117. }
  118. .item-icon{
  119. width: 30px;
  120. height: 30px;
  121. margin-bottom: 12px;
  122. }
  123. .item-label {
  124. width: 100%;
  125. margin-bottom: 20px;
  126. color: #fff;
  127. font-size: 12px;
  128. text-align: center;
  129. }
  130. .item-val {
  131. width: 100%;
  132. color: #009BFF;
  133. font-size: 16px;
  134. font-weight: bold;
  135. text-align: center;
  136. }
  137. }
  138. }
  139. </style>