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.

52 lines
1.1 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="case_detail_intro">
  3. <div class="wrap" v-for="(item, index) in cardIntro" :key="index">
  4. <div class="title">
  5. <div class="xuhao">{{ parseInt(index) + 1 }}</div>
  6. <p>{{ item.title }}</p>
  7. </div>
  8. <div class="desc">{{ item.desc }}</div>
  9. </div>
  10. </div>
  11. </template>
  12. <script setup>
  13. const props = defineProps({
  14. cardIntro: Array,
  15. })
  16. </script>
  17. <style lang="scss" scoped>
  18. .case_detail_intro {
  19. padding: 20px;
  20. .wrap {
  21. margin-bottom: 10px;
  22. .title {
  23. display: flex;
  24. align-items: center;
  25. font-size: 10px;
  26. font-family: Alibaba PuHuiTi;
  27. font-weight: bold;
  28. color: #000000;
  29. margin-bottom: 7px;
  30. .xuhao {
  31. width: 10px;
  32. height: 10px;
  33. border-radius: 50%;
  34. border: solid 1px #000;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. margin-right: 6px;
  39. }
  40. }
  41. .desc {
  42. font-size: 8px;
  43. line-height: 12px;
  44. font-family: Alibaba PuHuiTi;
  45. font-weight: 300;
  46. color: #aaaaaa;
  47. }
  48. }
  49. }
  50. </style>