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