消毒机设备
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
2.1 KiB

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. <script lang="ts" setup>
  2. import homeInside from 'assets/images/home/home-inside.svg'
  3. import homeProbe1 from 'assets/images/home/home-probe1.svg'
  4. import homeProbe2 from 'assets/images/home/home-probe2.svg'
  5. import { roundNumber } from 'libs/utils'
  6. import { onMounted } from 'vue'
  7. defineProps({
  8. envParams: {
  9. type: Object,
  10. default: () => {},
  11. },
  12. })
  13. const imgs: Record<string, any> = {
  14. inside: homeInside,
  15. probe1: homeProbe1,
  16. probe2: homeProbe2,
  17. }
  18. onMounted(() => {
  19. })
  20. </script>
  21. <template>
  22. <div class="title">
  23. <img :src="imgs[envParams.type]"> {{ envParams.title }}
  24. </div>
  25. <div class="env-row odd">
  26. <div class="env-row-label ">
  27. 温度
  28. </div>
  29. <div class="env-row-value ">
  30. {{ roundNumber(envParams.temp, 2) }}°C
  31. </div>
  32. </div>
  33. <div class="env-row">
  34. <div class="env-row-label ">
  35. 相对湿度
  36. </div>
  37. <div class="env-row-value">
  38. {{ roundNumber(envParams.rh, 2) }}%RH
  39. </div>
  40. </div>
  41. <div class="env-row odd">
  42. <div class="env-row-label ">
  43. 相对饱和度
  44. </div>
  45. <div class="env-row-value ">
  46. {{ roundNumber(envParams.rs, 2) }}%RS
  47. </div>
  48. </div>
  49. <div class="env-row">
  50. <div class="env-row-label ">
  51. 汽化过氧化氢
  52. </div>
  53. <div class="env-row-value ">
  54. {{ roundNumber(envParams.h2o2, 2) }}ppm
  55. </div>
  56. </div>
  57. </template>
  58. <style lang="scss" scoped>
  59. div{
  60. font-family: 思源黑体;
  61. font-size: 18px;
  62. font-weight: normal;
  63. line-height: normal;
  64. letter-spacing: 0.06em;
  65. }
  66. .title{
  67. padding-top: 10px;
  68. padding-left: 13px;
  69. display: flex;
  70. align-items: center;
  71. gap: 10px;
  72. font-size: 26px;
  73. margin: 10px;
  74. }
  75. .env-row{
  76. display: grid;
  77. grid-template-columns: repeat(2, 1fr);
  78. height: 4.8vw;
  79. .env-row-label{
  80. display: flex;
  81. align-items: center;
  82. justify-self: start;
  83. justify-content: center;
  84. padding-left: 10px;
  85. }
  86. .env-row-value{
  87. display: flex;
  88. align-items: center;
  89. justify-self: end;
  90. justify-content: center;
  91. padding-right: 10px;
  92. }
  93. }
  94. .odd {
  95. background: #EFEFEF;
  96. }
  97. </style>