LastMonthData.vue 5.5 KB

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