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

32 lines
762 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
  1. <template>
  2. <div class="case_show_container">
  3. <HeadLine
  4. themeTitle="案例"
  5. title="展示"
  6. line1="医疗健康、智能硬件、工业设备、高铁设备、户外设备"
  7. line2="特种设备、智能家居、实验仪器、消费电子"
  8. />
  9. <Card :caseList="getData()" />
  10. </div>
  11. </template>
  12. <script setup>
  13. import HeadLine from 'cpns/HeadLine'
  14. import { caseList, hardCaseList } from '@/mock'
  15. import Card from 'cpns/Card.vue'
  16. import { useRoute } from 'vue-router'
  17. const route = useRoute()
  18. const getData = () => {
  19. if (route.path.indexOf('/hardware') != -1) {
  20. return hardCaseList
  21. }
  22. return caseList
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .case_show_container {
  27. margin-top: 360px;
  28. padding-bottom: 7px;
  29. }
  30. </style>