土壤
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.

87 lines
1.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="home_container">
  3. <div class="header_card_wrap">
  4. <div class="header_info">
  5. <p class="machine_title">A18000</p>
  6. <div class="status_wrap">
  7. <img :src="Ok" class="status_img" alt="" />
  8. <p class="status_text">密封良好</p>
  9. </div>
  10. </div>
  11. <Tube />
  12. </div>
  13. <div class="content_card_wrap">
  14. <Steps />
  15. <LiquidInjection />
  16. <Tabs />
  17. </div>
  18. </div>
  19. </template>
  20. <script setup>
  21. import Ok from '@/assets/img/ok.png'
  22. import Tube from 'cpns/Tube'
  23. import Steps from 'cpns/Steps'
  24. import LiquidInjection from 'cpns/operation/LiquidInjection'
  25. import Tabs from 'cpns/Tabs'
  26. </script>
  27. <style lang="scss" scoped>
  28. .home_container {
  29. width: 800px;
  30. height: 1280px;
  31. opacity: 1;
  32. background: #f0f6fb;
  33. overflow: hidden;
  34. box-sizing: border-box;
  35. .header_card_wrap {
  36. padding: 30px;
  37. box-sizing: border-box;
  38. .header_info {
  39. width: 740px;
  40. height: 97px;
  41. border-radius: 48px;
  42. background: #fff;
  43. box-sizing: border-box;
  44. display: flex;
  45. align-items: center;
  46. justify-content: space-between;
  47. margin-bottom: 32px;
  48. padding: 0 45px;
  49. .machine_title {
  50. font-family: Poppins;
  51. font-size: 36px;
  52. font-weight: bold;
  53. line-height: normal;
  54. letter-spacing: 0.02em;
  55. color: #08092c;
  56. }
  57. .status_wrap {
  58. display: flex;
  59. align-items: center;
  60. .status_img {
  61. width: 28px;
  62. height: 28px;
  63. }
  64. .status_text {
  65. font-family: Poppins;
  66. font-size: 22px;
  67. font-weight: bold;
  68. line-height: normal;
  69. letter-spacing: 0.02em;
  70. color: #9395a0;
  71. margin-left: 9px;
  72. }
  73. }
  74. }
  75. }
  76. .content_card_wrap {
  77. width: 800px;
  78. height: 730px;
  79. border-radius: 40px 40px 0 0;
  80. background: #ffffff;
  81. padding: 20px;
  82. box-sizing: border-box;
  83. }
  84. }
  85. </style>