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
43 lines
1.9 KiB
<view class="page">
|
|
<view class="list_event">
|
|
<view class="range-style mar-top">
|
|
<!-- 时间段 -->
|
|
<view class="picker_group">
|
|
<picker mode="date" fields="month" value="{{date}}" end="{{end}}" bindchange="bindDateChange">
|
|
<view class="picker">
|
|
{{date}}
|
|
</view>
|
|
</picker>
|
|
<text class="text-style1">-</text>
|
|
<picker mode="date" fields="month" value="{{date2}}" start="{{end}}" bindchange="bindDateChange2">
|
|
<view class="picker">
|
|
{{date2}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<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.sourcetime}}</view>
|
|
<view class="media_text" style="width: 30%;">{{item.salescount}}</view>
|
|
<view style="width: 40%;">
|
|
<view class="volume">{{item.percentage}}</view>
|
|
<view class="trend" bindtap="detail" data-carTime="{{item.sourcetime}}">
|
|
<view>详细销量</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<view class="loading" hidden="{{!loadMore}}">正在载入更多...</view>
|
|
<view class="loading" hidden="{{!loadAll}}" wx:if="{{iPageIndex>1}}">已加载全部</view>
|
|
<van-dialog use-slot title="注意" show="{{ showDialog }}" bind:confirm="cdialog">
|
|
<view class="tc-d-t">结束时间不能小于开始时间</view>
|
|
</van-dialog>
|
|
</view> |