| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <template>
- <view class="nonprofit-activety" @tap.self="handleDetail(item)" v-if="item">
- <div class="na-top adf">
- <div class="na-top-left">
- <image :src="item.coverFile"></image>
- <div class="na-top-left-status">{{statusCfg[item.activeState]}}</div>
- </div>
- <div class="na-top-right">
- <p>{{item.activityName||''}}</p>
- <div class="tip adf">
- <div class="tip-left adfac">
- <image src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/09/11/201a4250-24a4-412d-9ec9-fc58071d10ea.png"></image>
- <text>截止报名:</text>
- </div>
- <!-- <div class="tip-right">{{item.endTimeText}}</div> -->
- <div class="tip-right">{{item.signupEndTime||'暂无'}}</div>
- </div>
- <div class="tip adf">
- <div class="tip-left adfac">
- <image src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/09/11/e9025f86-a59e-4f82-92f0-9d22e846193c.png"></image>
- <text>活动地点:</text>
- </div>
- <div class="tip-right">{{item.provinceName||''}}{{item.cityName||''}}</div>
- </div>
- </div>
- </div>
- <div class="na-bottom adfacjb">
- <div class="na-bottom-left adf">
- 已报名 <strong>{{item.recruitmentNow}}</strong>/{{item.recruitmentMax===0?'无限制':(item.recruitmentMax+' 人')}}
- </div>
- <!-- <div class="na-bottom-right" @tap.stop="toApply">立即报名</div> -->
- </div>
- </view>
- </template>
- <script setup name="nonprofitActivety">
- defineProps({
- item:{
- typeof:Object,
- default:null
- }
- })
- import { ref } from 'vue'
- import { useUserStore } from '@/common/stores/user';
- const userStore = useUserStore();
- const statusCfg = ref({
- 0:'未开始',
- 1:'报名中',
- 2:'进行中',
- 3:'已结束'
- })
-
- const handleDetail = item => {
- uni.navigateTo({
- url:'/pagesHome/activityDetail?id='+item.id
- })
- }
-
- const toApply = () => {
- userStore.openLoginModal();
- }
- </script>
- <style scoped lang="scss">
- .nonprofit-activety{
- background: linear-gradient( 45deg, #FFFFFF 80%, #F2FFE8 100%);
- border-radius: 24rpx;
- padding: 36rpx 24rpx 32rpx;
- margin-top: 20rpx;
-
- .na-top{
- &-left{
- width: 158rpx;
- height: 214rpx;
- position: relative;
- image{
- width: 100%;
- height: 100%;
- }
- &-status{
- width: 108rpx;
- height: 40rpx;
- background: url('https://transcend.ringzle.com/xiaozhi-app/profile/2025/11/17/301153c2-1142-48cd-be9e-26c97220436c.png') no-repeat;
- background-size: 100% 100%;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 24rpx;
- color: #151B29;
- line-height: 36rpx;
- padding-left: 12rpx;
- position: absolute;
- left: 0;
- top: 0;
- }
- }
- &-right{
- width: calc(100% - 158rpx);
- padding-left: 20rpx;
- box-sizing: border-box;
- &>p{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #151B29;
- line-height: 40rpx;
- margin-bottom: 5rpx;
- }
- .tip{
- margin-top: 25rpx;
- &-left{
- width: 160rpx;
- image{
- width: 24rpx;
- height: 24rpx;
- }
- text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #676775;
- line-height: 24rpx;
- margin-left: 10rpx;
- }
- }
- &-right{
- width: calc(100% - 160rpx);
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #676775;
- line-height: 24rpx;
- margin-left: 10rpx;
- }
- }
- }
- }
-
- .na-bottom{
- margin-top: 24rpx;
- &-left{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #676775;
- line-height: 24rpx;
- }
- &-right{
- background: #B7F358;
- border-radius: 27rpx;
- padding: 12rpx 30rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 24rpx;
- color: #151B29;
- line-height: 30rpx;
- }
- }
- }
- </style>
|