bt-lcyd/pages/matchList/matchList.wxml
dong_bo0602 4458f60375 0614
2022-06-14 10:56:41 +08:00

26 lines
1.0 KiB
Plaintext

<view class="page-title" wx:if="{{type == 'match'}}">赛事</view>
<view class="page-title" wx:else>活动</view>
<view class="match-list" wx:if="{{type == 'match'}}">
<view class="match-box" bindtap="goDetail" wx:for="{{pageList}}" wx:key="index" data-id="{{item.articleContentId}}" data-type="match">
<view class="match">
<view class="mathch-image">
<image src="{{requestIp}}route/file/downloadfile/true/{{item.images}}"></image>
</view>
<view class="match-info">
<view class="match-name">{{item.title}}</view>
</view>
</view>
</view>
</view>
<view class="match-list" wx:else>
<view class="match-box" bindtap="goDetail" wx:for="{{pageList}}" wx:key="index" data-id="{{item.articleContentId}}" data-type="activity">
<view class="match">
<view class="mathch-image">
<image src="{{requestIp}}route/file/downloadfile/true/{{item.images}}"></image>
</view>
<view class="match-info">
<view class="match-name">{{item.title}}</view>
</view>
</view>
</view>
</view>