新版梦工厂手机端官网
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.

47 lines
974 B

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. <Swiper />
  4. <CaseShow />
  5. <Hardware />
  6. <MechanicalDrive />
  7. <Track />
  8. <OneStop />
  9. <AboutUs />
  10. <!-- <News /> -->
  11. <Cooperation />
  12. <Awards />
  13. </div>
  14. </template>
  15. <script setup>
  16. import Swiper from 'cpns/Swiper'
  17. import CaseShow from 'cpns/CaseShow'
  18. import Hardware from 'cpns/Hardware'
  19. import MechanicalDrive from 'cpns/MechanicalDrive'
  20. import AboutUs from 'cpns/AboutUs'
  21. import Track from 'cpns/Track'
  22. import OneStop from 'cpns/OneStop'
  23. import News from 'cpns/News'
  24. import Cooperation from 'cpns/Cooperation'
  25. import Awards from 'cpns/Awards'
  26. import { ref } from 'vue'
  27. // const isDrag = ref(false)
  28. // const handlePress = e => {
  29. // // 背景虚化
  30. // isDrag.value = true
  31. // }
  32. // const handleRelease = e => {
  33. // // 背景实体化
  34. // isDrag.value = false
  35. // }
  36. </script>
  37. <style lang="scss" scoped>
  38. .home_container {
  39. background: #f5f5f5;
  40. max-width: 100vw;
  41. overflow: hidden;
  42. }
  43. </style>