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.

44 lines
1.9 KiB

3 years ago
<view class="page">
<view class="list_event">
<view class="range-style mar-top">
<!-- 时间段 -->
<view class="picker_group">
3 years ago
<picker mode="date" fields="month" value="{{date}}" end="{{end}}" bindchange="bindDateChange">
<view class="picker">
{{date}}
</view>
</picker>
3 years ago
<text class="text-style1">-</text>
<picker mode="date" fields="month" value="{{date2}}" start="{{end}}" bindchange="bindDateChange2">
3 years ago
<view class="picker">
{{date2}}
</view>
</picker>
</view>
</view>
3 years ago
<view class="ranking">
<view class="title">时间</view>
<view class="title">销量(辆)</view>
<view class="title2">在售品牌份额(%)</view>
</view>
<view class="ranks" wx:for="{{ranking}}" wx:key="index" data-ranking='{{item}}'>
<view style="display: flex;">
<view class="time_text" style="width: 30%;"> {{item.times}}</view>
<view class="media_text" style="width: 30%;">{{item.sales}}</view>
<view style="width: 40%;">
<view class="volume">{{item.share}}</view>
<view class="trend" bindtap="detail" data-carTime="{{item.times}}" data-carBrand="{{item.brand}}">
<view>详细销量</view>
</view>
3 years ago
</view>
</view>
3 years ago
</view>
3 years ago
</view>
3 years ago
<view hidden="{{!loadMore}}" style="font-size: 24rpx;text-align: center;">
3 years ago
该品牌暂无销售量
3 years ago
</view>
3 years ago
<van-dialog use-slot title="注意" show="{{ showDialog }}" bind:confirm="cdialog">
3 years ago
<view class="tc-d-t">结束时间不能小于开始时间</view>
</van-dialog>
3 years ago
</view>