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.

23 lines
870 B

3 years ago
<!--pages/index/detailedvolume/detailedvolume.wxml-->
3 years ago
<view class="box">
3 years ago
<view style="display: flex;">
3 years ago
<view class="box_left">
<view class="box_text">车型</view>
<view class="box_text">销量(辆)</view>
3 years ago
</view>
3 years ago
<view class="box_right">
<view class="box_text">所属级别</view>
<view class="box_text">级别/厂商排名</view>
3 years ago
</view>
</view>
3 years ago
<view class="container" wx:for="{{content}}" wx:key="index" data-content='{{item}}'>
3 years ago
<view class="box_left">
<view class="title">{{item.type}} </view>
<view class="num">{{item.volume}}</view>
3 years ago
</view>
3 years ago
<view class="box_right">
<view class="title">{{item.level}}</view>
3 years ago
<view class="title">{{item.rank}}/{{item.ranks}}</view>
3 years ago
</view>
</view>
</view>