index.vue 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <route lang="yaml">
  2. style:
  3. navigationBarTitleText: 设计游学
  4. navigationBarBackgroundColor: '#fff'
  5. </route>
  6. <script lang="ts" setup>
  7. import AvatarGroupCasual from '@/components/avatar-group-casual/avatar-group-casual.vue'
  8. import Card from '@/components/card.vue'
  9. import MomentItem from '@/components/moment-item.vue'
  10. import SectionHeading from '@/components/section-heading.vue'
  11. import TiltedButton from '@/components/tilted-button.vue'
  12. </script>
  13. <template>
  14. <view class="px-3.5">
  15. <view class="my-6">
  16. <card class=""></card>
  17. </view>
  18. <card custom-class="my-6 p-0!">
  19. <view class="relative">
  20. <wd-img
  21. custom-class="vertical-bottom"
  22. width="100%"
  23. height="275"
  24. src="https://via.placeholder.com/347x464"
  25. ></wd-img>
  26. <div
  27. class="w-[63px] h-[29px] bg-black/60 rounded-[20px] backdrop-blur-[15px] absolute top-5 right-3.5 flex items-center justify-center"
  28. >
  29. <div class="text-white text-sm font-normal font-['PingFang SC'] leading-relaxed">
  30. 报名中
  31. </div>
  32. </div>
  33. <view class="absolute left-3.5 bottom-2.5 flex items-center">
  34. <avatar-group-casual
  35. :show-number="3"
  36. :urls="[
  37. 'https://via.placeholder.com/20x20',
  38. 'https://via.placeholder.com/20x20',
  39. 'https://via.placeholder.com/20x20',
  40. ]"
  41. ></avatar-group-casual>
  42. <div
  43. class="ml-1 text-white/60 text-sm font-normal font-['PingFang SC'] leading-[10.18px]"
  44. >
  45. 40人已报名
  46. </div>
  47. </view>
  48. </view>
  49. <div class="bg-[#27130d]/50 rounded-bl-2xl rounded-br-2xl backdrop-blur-[20px] p-3.5">
  50. <div class="w-[293px] text-white text-xl font-normal font-['PingFang SC'] leading-relaxed">
  51. 日本研学·东京艺术大学设计游学
  52. </div>
  53. <view class="flex items-center">
  54. <div class="text-white/60 text-sm font-normal font-['PingFang SC'] leading-[34px]">
  55. 游学时间:
  56. </div>
  57. <div class="text-white/60 text-base font-normal font-['PingFang SC'] leading-[34px]">
  58. 07.15 08.10
  59. </div>
  60. </view>
  61. <div
  62. class="text-justify text-white/60 text-sm font-normal font-['PingFang SC'] leading-relaxed"
  63. >
  64. 等级限制:黄金会员以上
  65. </div>
  66. <view class="flex items-center justify-between">
  67. <view class="flex items-end">
  68. <div class="text-white text-3xl font-bold font-['D-DIN Exp'] leading-normal">16000</div>
  69. <div class="ml-1 text-white/60 text-sm font-normal font-['PingFang SC'] leading-[34px]">
  70. 积分
  71. </div>
  72. </view>
  73. <tilted-button custom-class="" size="large" color="white">立即报名</tilted-button>
  74. </view>
  75. </div>
  76. </card>
  77. <card custom-class="my-6">
  78. <div class="my-7.5 text-black text-xl font-normal font-['PingFang SC'] leading-[10.18px]">
  79. 筑巢荟-设计游学
  80. </div>
  81. <div
  82. class="w-[319px] h-[264px] text-justify text-black/40 text-base font-normal font-['PingFang SC'] leading-relaxed"
  83. >
  84. 我们为您精心打造了一个独特且极具价值的游学项目。这个项目的核心旨在全方位提升您作为设计师的能力。
  85. 在这里,您将拥有无比优质的游学资源。我们与全球知名的设计学府、顶尖设计工作室以及具有代表性的经典建筑和室内空间建立了紧密合作。您将有机会深入这些卓越的场所,亲身体验最前沿的设计理念和实践。
  86. 参与专业的研讨会和工作坊,与同行们分享见解、碰撞思维火花,进一步深化对设计的理解。
  87. </div>
  88. </card>
  89. <section-heading custom-class="my-6" title="同学荟"></section-heading>
  90. <view class="my-6">
  91. <img class="w-[136px] h-[171px] rounded-2xl" src="https://via.placeholder.com/136x171" />
  92. <div class="w-[347px] h-[145px] bg-white rounded-2xl shadow"></div>
  93. </view>
  94. <section-heading custom-class="my-6" title="设计圈"></section-heading>
  95. <moment-item></moment-item>
  96. </view>
  97. </template>