hjyd的手机端
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.

56 lines
1.5 KiB

2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="hardware_home_container">
  3. <Swiper page="hardware" />
  4. <CaseShow />
  5. <div class="img_wrap">
  6. <img :src="Hard" class="img" alt="" />
  7. </div>
  8. <HeadLine
  9. title="合作过的"
  10. themeTitle="芯片原厂"
  11. :flip="true"
  12. line1="医疗企业 互联网公司 智能硬件公司 科研院所 工业自动化企业"
  13. />
  14. <img :src="Chip" class="img" alt="" />
  15. <img :src="Wu" class="img" alt="" />
  16. <Track />
  17. <HeadLine
  18. title="专家"
  19. themeTitle="电机控制"
  20. line1="自主研发电机驱动器,让控制更加精准"
  21. />
  22. <div class="img_wrap">
  23. <img :src="Dian" class="img" alt="" />
  24. <img :src="Accelerate" class="img" alt="" />
  25. </div>
  26. <AboutUs />
  27. <Cooperation />
  28. </div>
  29. </template>
  30. <script setup>
  31. import Swiper from 'cpns/Swiper'
  32. import CaseShow from 'cpns/CaseShow'
  33. import Hard from '@/static/img/hardware/hardware.png'
  34. import Chip from '@/static/img/hardware/chip.png'
  35. import HeadLine from 'cpns/HeadLine'
  36. import Track from 'cpns/Track'
  37. import Accelerate from '@/static/img/hardware/accelerate.png'
  38. import Wu from '@/static/img/hardware/wulianwang.png'
  39. import Dian from '@/static/img/hardware/dianji.png'
  40. import AboutUs from 'cpns/AboutUs.vue'
  41. import Cooperation from 'cpns/Cooperation'
  42. </script>
  43. <style lang="scss" scoped>
  44. .hardware_home_container {
  45. background: #f5f5f5;
  46. .img_wrap {
  47. padding: 0 7px;
  48. }
  49. .img {
  50. width: 100%;
  51. height: auto;
  52. }
  53. }
  54. </style>