HorNowData.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <div
  3. class="NowData"
  4. :class="[screenType==='hor' ? 'hor-nowData-contain' : '' ]"
  5. >
  6. <div class="nowData-title">
  7. <span class="hor-nowData-title-text">实时数据</span>
  8. <div class="normal-explain">
  9. <span class="content_level title-right-icon"></span>
  10. <span class="title-right">正常范围</span>
  11. </div>
  12. </div>
  13. <span :class="[screenType==='hor' ? 'hor-nowData-title-slogan' : '' ]">主动式空调,会呼吸的写字楼</span>
  14. <div
  15. class="contain"
  16. :class="[screenType==='hor' ? 'hor-contain' : 'vert-contain' ]"
  17. >
  18. <div
  19. class="item"
  20. v-for="(item, index) in horScreenImg"
  21. :key="index"
  22. >
  23. <div class="item_content">
  24. <img
  25. :class="[screenType==='hor' ? '' : 'vert' ]"
  26. :src="item.img"
  27. alt=""
  28. >
  29. <div class="content_value">
  30. <span>{{item.value}}</span><span>{{item.unit}}</span>
  31. </div>
  32. <div class="content_name">
  33. <span>{{item.name}}</span>
  34. </div>
  35. <div
  36. class="content_level"
  37. :class="item.level"
  38. >
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </template>
  45. <script>
  46. import icon_temp from '@/assets/icon_temp.png'
  47. import icon_humidity from '@/assets/icon_humidity.png'
  48. import icon_CO2 from '@/assets/icon_CO2.png'
  49. import icon_formaldehyde from '@/assets/icon_formaldehyde.png'
  50. import icon_PM2d5 from '@/assets/icon_PM2d5.png'
  51. export default {
  52. props: {
  53. screenType: {
  54. type: String,
  55. default: () => { return 'hor' } //hor 横屏 vert 竖屏
  56. }
  57. },
  58. data() {
  59. return {
  60. horScreenImg: [
  61. { id: 1, name: '温度', img:icon_temp, value: 24.5, unit: '℃', level: 'low' },
  62. { id: 2, name: '湿度', img: icon_humidity, value: 33, unit: '%', level: 'middle' },
  63. { id: 3, name: 'CO2', img:icon_CO2, value: 399, unit: 'ppm', level: 'low' },
  64. { id: 4, name: '甲醛', img: icon_formaldehyde, value: 0.03, unit: 'mg/m³', level: 'low' },
  65. { id: 5, name: 'PM2.5', img: icon_PM2d5, value: 6, unit: 'ug/m³', level: 'low' }
  66. ]
  67. }
  68. }
  69. }
  70. </script>
  71. <style lang="less" scoped>
  72. .NowData {
  73. &.hor-nowData-contain {
  74. height: 498px;
  75. width: 1508px;
  76. border-radius: 20px;
  77. background: #ffffff;
  78. }
  79. color: rgba(87, 82, 113, 1);
  80. .nowData-title {
  81. display: flex;
  82. justify-content: space-between;
  83. padding: 24px 32px 0 32px;
  84. }
  85. .hor-nowData-title-text {
  86. font-family: PingFang SC;
  87. font-size: 20px;
  88. font-style: normal;
  89. font-weight: 600;
  90. line-height: 28px;
  91. letter-spacing: 0px;
  92. text-align: left;
  93. }
  94. .hor-nowData-title-slogan {
  95. padding: 4px 0 0px 32px;
  96. }
  97. .contain {
  98. display: flex;
  99. &.hor-contain {
  100. width: 1306px;
  101. height: 280px;
  102. margin-left: 101px;
  103. padding-top: 46px;
  104. }
  105. &.vert-contain {
  106. }
  107. }
  108. .item {
  109. width: calc(100% / 5);
  110. .item_content {
  111. height: 100%;
  112. display: flex;
  113. flex-direction: column;
  114. justify-content: center;
  115. align-items: center;
  116. text-align: center;
  117. img {
  118. width: 150px;
  119. height: 150px;
  120. &.vert {
  121. width: 130px;
  122. height: 130px;
  123. }
  124. }
  125. .content_value {
  126. font-family: Persagy;
  127. font-size: 42px;
  128. font-weight: 700;
  129. line-height: 51px;
  130. color: rgba(59, 53, 88, 1);
  131. }
  132. .content_name {
  133. padding-top: 8px;
  134. font-family: PingFang SC;
  135. font-size: 24px;
  136. font-weight: 400;
  137. line-height: 34px;
  138. }
  139. }
  140. }
  141. .content_level {
  142. padding-top: 8px;
  143. box-sizing: border-box;
  144. width: 16px;
  145. height: 16px;
  146. border-radius: 50%;
  147. background: rgba(126, 216, 116, 1);
  148. &.middle {
  149. background: rgba(239, 214, 46, 1);
  150. }
  151. &.title-right-icon {
  152. display: inline-block;
  153. padding: 0;
  154. width: 12px;
  155. height: 12px;
  156. }
  157. &.title-right {
  158. height: 20px;
  159. width: 56px;
  160. }
  161. }
  162. .normal-explain {
  163. display: flex;
  164. align-items: center;
  165. }
  166. }
  167. </style>