volunteer-policy-item.vue 604 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="pl-28 pr-18 py-28 flex justify-between items-center bg-back-light rounded-xl relative">
  3. <view class="absolute z-1">
  4. <view class="text-nowrap text-sm text-fore-title font-bold">{{title}}</view>
  5. <view class="mt-5 text-nowrap text-3xs text-fore-tip">{{desc}}</view>
  6. </view>
  7. <view/>
  8. <ie-image is-oss :src="icon" custom-class="w-108 h-88" />
  9. </view>
  10. </template>
  11. <script setup lang="ts" name="VolunteerPolicyItem">
  12. defineProps({
  13. title: String,
  14. desc: String,
  15. icon: String
  16. })
  17. </script>
  18. <style scoped>
  19. </style>