12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view class="content">
- <view class="box">
- <view class="historyLine" v-for="(item,index) in 3">
- <image src="http://img.db.66km.cn/carbrandlogo/B - 宝马.png" mode="" class="historylinecarImg"></image>
- <view class="historylinecar">华晨宝马iX3 G08 电动 HA001N0电动领先型 ( 改款 )(2021-2021)过长换行</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
-
- },
- data() {
- return {
-
- }
- },
- onLoad(opt) {
-
- },
- methods: {
-
- }
- }
- </script>
- <style scoped>
- .box{
- padding: 0 24rpx;
- }
- .historylinecarImg{
- width: 46rpx;
- height: 46rpx;
- }
- .historylinecar{
- font-weight: 400;font-size: 26rpx;
- color: #1A1A1A;
- line-height: 37rpx;width: 636rpx;
- }
- .historyLine{
- display: flex;justify-content: space-between;
- padding: 30rpx 0;border-top: 1rpx solid #EEEEEE;
- }
- </style>
|