15 lines
933 B
Plaintext
15 lines
933 B
Plaintext
|
<view class="match-img" wx:if="{{matchInfo.frontCover || activityInfo.frontCover}}">
|
||
|
<image src="{{requestIp}}route/file/downloadfile/true/{{matchInfo.frontCover}}" wx:if="{{type == 'match'}}"></image>
|
||
|
<image src="{{requestIp}}route/file/downloadfile/true/{{activityInfo.frontCover}}" wx:if="{{type == 'activity'}}"></image>
|
||
|
</view>
|
||
|
<view class="match-name" wx:if="{{type == 'match'}}">{{matchInfo.title}}</view>
|
||
|
<view class="match-name" wx:else>{{activityInfo.title}}</view>
|
||
|
<view class="match-detail">
|
||
|
<!-- <view class="match-summary-title">摘要</view> -->
|
||
|
<view class="match-summary-title" wx:if="{{type == 'match'}}">赛事详情</view>
|
||
|
<view class="match-summary-title" wx:else>活动详情</view>
|
||
|
<view class="match-summary">
|
||
|
<htmltowxml text="{{matchInfo.matchSummary}}" wx:if="{{type == 'match'}}"></htmltowxml>
|
||
|
<htmltowxml text="{{activityInfo.activitySummary}}" wx:else></htmltowxml>
|
||
|
</view>
|
||
|
</view>
|