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.
72 lines
4.0 KiB
72 lines
4.0 KiB
3 years ago
|
<view class="chart_box">
|
||
|
<view class="chart_title">尾翼趋势对比</view>
|
||
|
<view class="table">
|
||
|
<c-echars height="100%" showChart="{{showChart}}" canvasId="eventbar-canvas" chartId="eventbar" chartOption="{{transformOption2}}"></c-echars>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="chart_box">
|
||
|
<view class="chart_title">分渠道信息量</view>
|
||
|
<view class="table">
|
||
|
<c-echars height="100%" showChart="{{showChart}}" canvasId="eventbar-canvas" chartId="eventbar" chartOption="{{channelOption}}"></c-echars>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<view class="top_box">
|
||
|
<view class="top-title">
|
||
|
<view style="width: 45%;">尾翼TOP媒体</view>
|
||
|
<view style="width:50%;margin-right: 32rpx;">
|
||
|
<van-tabs type="card" active="{{ topActive }}" color="#BBBBBB" bind:change="changeModalHot">
|
||
|
<van-tab title="组一"></van-tab>
|
||
|
<van-tab title="组二" wx:if="{{brandTopData.length>2}}"></van-tab>
|
||
|
<van-tab title="组三" wx:if="{{brandTopData.length>4}}"></van-tab>
|
||
|
</van-tabs>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
<view style="font-size:32rpx;margin-left:30rpx;">{{brandTop[0].key}}</view>
|
||
|
<view class="rank_list">
|
||
|
<view class="ranking">
|
||
|
<view style=" display: inline-block;">排名</view>
|
||
|
<view style=" display: inline-block;margin-left: 172rpx;">车型</view>
|
||
|
<view style=" display: inline-block;margin-left: 272rpx;">传播量</view>
|
||
|
</view>
|
||
|
<view class="ranking_cell" wx:for="{{brandTop[0].value}}" wx:for-item="item" wx:if="{{index>=0 && index<=4}}" wx:key="V">
|
||
|
<view wx:if="{{index==0}}">
|
||
|
<image src="{{imageUrl}}/img_diyi.png" style="height:46rpx;width:53rpx;"></image>
|
||
|
</view>
|
||
|
<view wx:elif="{{index==1}}">
|
||
|
<image src="{{imageUrl}}/img_dier.png" style="height:46rpx;width:53rpx;"></image>
|
||
|
</view>
|
||
|
<view wx:elif="{{index==2}}">
|
||
|
<image src="{{imageUrl}}/img_disan.png" style="height:46rpx;width:53rpx;"></image>
|
||
|
</view>
|
||
|
<view wx:else style="font-size: 28rpx;color: #999999;font-weight: bolder;width: 52rpx;">{{"0"+(index+1)}}</view>
|
||
|
<view style=" display: inline-block;font-size: 28rpx;width: 112rpx;margin-left: 166rpx; font-weight: bolder;">{{item.key}}</view>
|
||
|
<view style=" display: inline-block;font-size: 28rpx;width: 94rpx;margin-left: 194rpx;color: #0084ff;font-weight: bolder;">{{item.value}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="henxian"></view>
|
||
|
<view style="font-size:32rpx;margin-left:30rpx;">{{brandTop[1].key}}</view>
|
||
|
<view class="rank_list">
|
||
|
<view class="ranking" wx:if="{{brandTop[1].key}}">
|
||
|
<view style=" display: inline-block;">排名</view>
|
||
|
<view style=" display: inline-block;margin-left: 172rpx;">车型</view>
|
||
|
<view style=" display: inline-block;margin-left: 272rpx;">传播量</view>
|
||
|
</view>
|
||
|
<view class="ranking_cell" wx:for="{{brandTop[1].value}}" wx:for-item="item" wx:if="{{index>=0 && index<=4}}" wx:key="S">
|
||
|
<view wx:if="{{index==0}}">
|
||
|
<image src="{{imageUrl}}/img_diyi.png" style="height:46rpx;width:53rpx;"></image>
|
||
|
</view>
|
||
|
<view wx:elif="{{index==1}}">
|
||
|
<image src="{{imageUrl}}/img_dier.png" style="height:46rpx;width:53rpx;"></image>
|
||
|
</view>
|
||
|
<view wx:elif="{{index==2}}">
|
||
|
<image src="{{imageUrl}}/img_disan.png" style="height:46rpx;width:53rpx;"></image>
|
||
|
</view>
|
||
|
<view wx:else style="font-size: 28rpx;color: #999999;font-weight: bolder;width: 52rpx;">{{"0"+(index+1)}}</view>
|
||
|
<view style=" display: inline-block;font-size: 28rpx;width: 112rpx;margin-left: 166rpx; font-weight: bolder;">{{item.key}}</view>
|
||
|
<view style=" display: inline-block;font-size: 28rpx;width: 94rpx;margin-left: 194rpx;color: #0084ff;font-weight: bolder;">{{item.value}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|