大空间消毒机
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.

19 lines
378 B

2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="disinfection_setting_container">
  3. <Device :runInfection="true" />
  4. </div>
  5. </template>
  6. <script setup>
  7. import Device from 'cpns/Setting/components/Device'
  8. </script>
  9. <style lang="scss" scoped>
  10. .disinfection_setting_container {
  11. margin-bottom: 19px;
  12. height: 580px;
  13. box-sizing: border-box;
  14. background: #ffffff;
  15. border-radius: 16px;
  16. }
  17. </style>