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.
53 lines
2.1 KiB
53 lines
2.1 KiB
<view class="list_event">
|
|
<view style="padding: 32rpx;">
|
|
<view class="text">
|
|
|
|
<!-- <van-cell title="展示弹出层" is-link bind:click="showPopup" />
|
|
<van-popup show="{{ show }}" bind:close="onClose">
|
|
<view class="popup">
|
|
<van-datetime-picker type="year-month" value="{{ currentDate }}" min-date="{{ minDate }}" bind:input="onInput" />
|
|
</view>
|
|
|
|
</van-popup> -->
|
|
<!-- 底部 -->
|
|
<view class="section" style="padding:20rpx">
|
|
<picker mode="date" value="{{date}}" start="1800-01-01" end="{{end}}" bindchange="bindDateChange">
|
|
<view class="picker">
|
|
{{date}}
|
|
</view>
|
|
</picker>
|
|
<van-icon name="arrow-down" style="color:#0084FF" />
|
|
</view>
|
|
<view class="line">——</view>
|
|
<view class="section" style="padding:20rpx">
|
|
<picker mode="date" value="{{date2}}" start="1800-01-01" end="{{end}}" bindchange="bindDateChange2">
|
|
<view class="picker">
|
|
{{date2}}
|
|
</view>
|
|
|
|
</picker> <van-icon name="arrow-down" style="color:#0084FF"/>
|
|
</view>
|
|
<!-- <van-cell bindtap="start"></van-cell>
|
|
<view >——</view>
|
|
<van-cell bindtap="end"></van-cell> -->
|
|
</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.time}}</view>
|
|
<view class="media_text" style="width: 30%;">{{item.vehicle}}</view>
|
|
<view style="width: 30%;">
|
|
<view class="volume">{{item.share}}</view>
|
|
<view class="trend" bindtap="detail">
|
|
<view>详细销量</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<!-- </view> --> |