新型管道消毒机前端代码
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.

91 lines
2.7 KiB

  1. <template>
  2. <div class="environment_container">
  3. <div class="top_title">
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. xmlns:xlink="http://www.w3.org/1999/xlink"
  7. fill="none"
  8. version="1.1"
  9. width="27.99883270263672"
  10. height="28"
  11. viewBox="0 0 27.99883270263672 28"
  12. >
  13. <g>
  14. <path
  15. d="M13.9988,0C6.26685,0,0,6.26801,0,14.0006C0,21.732,6.26685,28,13.9988,28C21.732,28,27.9988,21.7314,27.9988,14.0006C27.9988,6.26685,21.732,0,13.9988,0ZM13.33,2.65902L15.1101,2.65902L15.1101,6.15218L13.33,6.15218L13.33,2.65902ZM8.00499,9.19305L5.53515,6.72263L6.79364,5.46414L9.26348,7.93456L8.00499,9.19305ZM8.88395,3.93963L10.494,3.18872L11.9708,6.35358L10.359,7.10565L8.88395,3.93963ZM14.2439,24.2036C12.6961,24.2036,11.4428,22.9486,11.4428,21.4025C11.4428,20.1929,12.2083,19.1673,13.2823,18.7744L13.2823,10.7833L15.0606,10.7833L15.0606,18.722C16.2085,19.0706,17.0455,20.1382,17.0455,21.4031C17.0455,22.9486,15.7917,24.2036,14.2439,24.2036ZM16.3295,6.35009L17.8063,3.18407L19.4182,3.93672L17.9431,7.10274L16.3295,6.35009ZM20.2412,9.19305L18.9827,7.93456L21.4526,5.46414L22.7111,6.72263L20.2412,9.19305Z"
  16. fill="#FFFFFF"
  17. fill-opacity="1"
  18. />
  19. </g>
  20. </svg>
  21. <p class="title">仓内</p>
  22. </div>
  23. <div class="content">
  24. <div class="line">
  25. <p class="title">仓内温度</p>
  26. <p class="num">000</p>
  27. </div>
  28. <div class="line">
  29. <p class="title">仓内湿度</p>
  30. <p class="num">000</p>
  31. </div>
  32. <div class="line">
  33. <p class="title">仓内过氧化氢浓度</p>
  34. <p class="num">1000 PPM</p>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <script setup></script>
  40. <style lang="scss" scoped>
  41. .environment_container {
  42. width: 353px;
  43. height: 225px;
  44. box-sizing: border-box;
  45. overflow: hidden;
  46. border-radius: 17.5px;
  47. .top_title {
  48. padding: 15px 16px;
  49. display: flex;
  50. align-items: center;
  51. .title {
  52. font-family: Source Han Sans CN;
  53. font-size: 24px;
  54. font-weight: 500;
  55. letter-spacing: 0.1em;
  56. margin-left: 8px;
  57. color: #ffffff;
  58. }
  59. }
  60. .content {
  61. .line {
  62. padding: 14px 26px;
  63. width: 353px;
  64. height: 56px;
  65. box-sizing: border-box;
  66. display: flex;
  67. align-items: center;
  68. justify-content: space-between;
  69. &:nth-child(odd) {
  70. background: #1f6397;
  71. }
  72. .title {
  73. font-family: Source Han Sans CN;
  74. font-size: 16px;
  75. font-weight: normal;
  76. letter-spacing: 0.06em;
  77. color: #ffffff;
  78. }
  79. .num {
  80. font-family: Source Han Sans CN;
  81. font-size: 20px;
  82. font-weight: bold;
  83. letter-spacing: 0.06em;
  84. color: #ffffff;
  85. }
  86. }
  87. }
  88. }
  89. </style>