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.
24 lines
1.1 KiB
24 lines
1.1 KiB
<view>
|
|
<!-- 时间组件 -->
|
|
<time-component></time-component>
|
|
<view class="list_event">
|
|
<view class="event_title">传播重点媒体排行</view>
|
|
<view class="ranking">
|
|
<view class="title">排名</view>
|
|
<view class="title">媒体</view>
|
|
<view class="title2">传播量</view>
|
|
</view>
|
|
<view>
|
|
<view class="rank" wx:for="{{ranking}}" wx:key="index" data-ranking='{{item}}'>
|
|
<view class="dis_image">
|
|
<image class="rank_num" wx:if="{{index === 0}}" src="/images/img_diyi.png"></image>
|
|
<image class="rank_num" wx:if="{{index === 1}}" src="/images/img_dier.png"></image>
|
|
<image class="rank_num" wx:if="{{index === 2}}" src="/images/img_disan.png"></image>
|
|
<view class="num" wx:if="{{index !== 0 &&index !== 1 &&index !== 2 }}">{{index >= 9 ? index + 1 : '0' + (index + 1)}}</view>
|
|
</view>
|
|
<view class="media">{{item.media}}</view>
|
|
<view class="volume">{{item.volume}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |