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.

43 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" end="{{date2+'-01'}}" value="{{date}}" bindchange="bindDateChange">
3 years ago
<view class="picker">
{{date}}
</view>
</picker>
3 years ago
<text class="text-style1">-</text>
3 years ago
<picker mode="date" fields="month" end="{{date2+'-01'}}" value="{{date2}}" 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;">
3 years ago
<view class="time_text" style="width: 30%;"> {{item.sourcetime}}</view>
<view class="media_text" style="width: 30%;">{{item.salescount}}</view>
3 years ago
<view style="width: 40%;">
3 years ago
<view class="volume">{{item.percentage}}</view>
3 years ago
<view class="trend" bindtap="detail" data-carTime="{{item.sourcetime}}">
3 years ago
<view>详细销量</view>
</view>
3 years ago
</view>
</view>
3 years ago
</view>
3 years ago
</view>
3 years ago
<view class="loading" hidden="{{!loadMore}}">正在载入更多...</view>
3 years ago
<view class="loading" hidden="{{!loadAll}}" wx:if="{{iPageIndex>1}}">已加载全部</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>