HorLastMonthData.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <div class="lastMonth">
  3. <div class="lastMonth-title"><span>上月数据</span></div>
  4. <div
  5. class="item"
  6. v-for="(item,index) in lastMonthData"
  7. :key="index"
  8. >
  9. <div class="item-left">
  10. <img :src="item.img" />
  11. </div>
  12. <div class="item-right">
  13. <div class="item-value">
  14. <span>{{item.value}}</span><span>{{item.unit}}</span>
  15. </div>
  16. <div class="item-content">
  17. <div class="item-content-left">
  18. <span
  19. class="max-value maxmin-level"
  20. :style="{background:item.maxColor}"
  21. ></span>
  22. <span
  23. class="max-min-line"
  24. :style="{ background: 'linear-gradient('+item.maxColor+',' +item.minColor+')' }"
  25. ></span>
  26. <span
  27. class="min-value maxmin-level"
  28. :style="{background:item.minColor}"
  29. ></span>
  30. </div>
  31. <div class="item-content-right">
  32. <div class="max">
  33. <span>{{item.maxName}}</span>
  34. <span>{{item.max}}</span>
  35. <span>{{item.unit}}</span>
  36. </div>
  37. <div class="min">
  38. <span>{{item.minName}}</span>
  39. <span>{{item.min}}</span>
  40. <span>{{item.unit}}</span>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </template>
  48. <script>
  49. import icon_temp from '@/assets/icon_temp.png'
  50. import icon_humidity from '@/assets/icon_humidity.png'
  51. import icon_CO2 from '@/assets/icon_CO2.png'
  52. import icon_formaldehyde from '@/assets/icon_formaldehyde.png'
  53. import icon_PM2d5 from '@/assets/icon_PM2d5.png'
  54. export default {
  55. name: 'lastMonthData',
  56. props: {
  57. screenType: {
  58. type: String,
  59. default: () => { return 'hor' } //hor 横屏 vert 竖屏
  60. }
  61. },
  62. data() {
  63. return {
  64. lastMonthData: [
  65. { id: 1, name: "温度", value: 24.5, unit: "℃", maxName: '最高温', maxColor: "#F5483D", minColor: "#7ed874", max: 26, minName: "最低温", min: 24, img: icon_temp },
  66. { id: 1, name: "湿度", value: 36, unit: "%", maxColor: "#EE9F2B", minColor: "#7ed874", maxName: '最大值', max: 50, minName: "最小值", min: 20, img: icon_humidity},
  67. { id: 1, name: "CO2", value: 420, unit: "ppm", maxColor: "#EFD62E", minColor: "#7ed874", maxName: '最大值', max: 630, minName: "最小值", min: 300, img: icon_CO2 },
  68. { id: 1, name: "甲醛", value: 0.03, unit: "mg/m³", maxColor: "#F5483D", minColor: "#7ed874", maxName: '最大值', max: 0.01, minName: "最小值", min: 0.07, img: icon_formaldehyde },
  69. { id: 1, name: "PM3d5", value: 120, unit: "ug/m³", maxColor: "#C4E34F", minColor: "#7ed874", maxName: '最大值', max: 140, minName: "最小值", min: 70, img: icon_PM2d5 },
  70. ]
  71. }
  72. },
  73. methods: {
  74. // linearGraient(start,end){
  75. // return {
  76. // "border-image":linear-gradient(start,end) 0 18
  77. // }
  78. // }
  79. },
  80. }
  81. </script>
  82. <style lang="less" scoped>
  83. .lastMonth {
  84. height: 910px;
  85. width: 308px;
  86. border-radius: 20px;
  87. background: rgba(255, 255, 255, 0.8);
  88. border: 2px solid rgba(255, 255, 255, 1);
  89. padding-left: 32px;
  90. color: rgba(87, 82, 113, 1);
  91. .lastMonth-title {
  92. font-family: PingFang SC;
  93. font-size: 20px;
  94. font-weight: 600;
  95. line-height: 28px;
  96. color: rgba(59, 53, 88, 1);
  97. margin: 24px 0 0 0;
  98. }
  99. .item {
  100. padding-top: 60px;
  101. display: flex;
  102. align-items: center;
  103. height: 86px;
  104. width: 250px;
  105. .item-left {
  106. width: 86px;
  107. height: 86px;
  108. margin-right: 20px;
  109. img {
  110. width: 100%;
  111. height: 100%;
  112. }
  113. }
  114. .item-value {
  115. font-family: Persagy;
  116. font-size: 26px;
  117. font-weight: 700;
  118. line-height: 31px;
  119. }
  120. .item-content {
  121. display: flex;
  122. align-items: center;
  123. padding-top: 8px;
  124. font-weight: 500;
  125. .item-content-left {
  126. display: flex;
  127. flex-direction: column;
  128. .max-min-line {
  129. height: 18px;
  130. width: 1px;
  131. // background: linear-gradient(#f5483d, #7ed874);
  132. position: relative;
  133. left: 4px;
  134. }
  135. }
  136. .maxmin-level {
  137. display: inline-block;
  138. height: 9px;
  139. width: 9px;
  140. border-radius: 50%;
  141. margin-right: 8px;
  142. }
  143. }
  144. .min {
  145. padding-top: 8px;
  146. }
  147. }
  148. }
  149. </style>