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.
37 lines
1.5 KiB
37 lines
1.5 KiB
3 years ago
|
<view class="container">
|
||
|
<view class="yesword">
|
||
|
<view class="noresult">
|
||
|
<view class="club-list">
|
||
|
<block wx:for="{{fourImages}}" wx:key='four'>
|
||
|
<view class="four-list" bindtap="toactiveDetail" data-id="{{item.activityId}}">
|
||
|
<image src='{{item.activityLogo?item.activityLogo:logo}}' mode='aspectFill' class="bigimg"></image>
|
||
|
<view class="four-word">
|
||
|
<view class="four-title">{{item.activityName}}</view>
|
||
|
<view class="four-log">
|
||
|
<text>{{item.startRegisterTime}}</text>
|
||
|
<text>|</text>
|
||
|
<text>{{item.endRegisterTime}}</text>
|
||
|
<text>|</text>
|
||
|
<text>{{item.activityAddr}}</text>
|
||
|
</view>
|
||
|
<view class="four-name">{{item.clubName}}
|
||
|
<image src="/images/person.png" wx:if="{{item.verifyType==1}}"></image>
|
||
|
<image src="/images/comp.png" wx:elif="{{item.verifyType==2}}"></image>
|
||
|
<image src="/images/nouser.png" wx:else></image>
|
||
|
</view>
|
||
|
<view class="four-bottom">
|
||
|
<view>{{item.totalRegister}}人已参加</view>
|
||
|
<view class="price"><text>¥</text>{{item.rangePrice}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</block>
|
||
|
<view class="more" bindtap="toactive">
|
||
|
<view class='more-left'></view>
|
||
|
<view class="more-word">下拉加载</view>
|
||
|
<view class="more-right"></view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|