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
874 B
23 lines
874 B
<!--pages/index/detailedvolume/detailedvolume.wxml-->
|
|
<view class="box">
|
|
<view style="display: flex;">
|
|
<view class="box_left">
|
|
<view class="box_text">车型</view>
|
|
<view class="box_text">销量(辆)</view>
|
|
</view>
|
|
<view class="box_right">
|
|
<view class="box_text">所属级别</view>
|
|
<view class="box_text">级别/厂商排名</view>
|
|
</view>
|
|
</view>
|
|
<view class="container" wx:for="{{content}}" wx:key="index" data-content='{{item}}'>
|
|
<view class="box_left">
|
|
<view class="title">{{item.models}} </view>
|
|
<view class="num">{{item.count}}</view>
|
|
</view>
|
|
<view class="box_right">
|
|
<view class="title">{{item.space}}</view>
|
|
<view class="title">{{item.specm}}/{{item.salespm}}</view>
|
|
</view>
|
|
</view>
|
|
</view> |