history.vue 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="historyLine" v-for="(item,index) in 3">
  5. <image src="http://img.db.66km.cn/carbrandlogo/B - 宝马.png" mode="" class="historylinecarImg"></image>
  6. <view class="historylinecar">华晨宝马iX3 G08 电动 HA001N0电动领先型 ( 改款 )(2021-2021)过长换行</view>
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. components: {
  14. },
  15. data() {
  16. return {
  17. }
  18. },
  19. onLoad(opt) {
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style scoped>
  26. .box{
  27. padding: 0 24rpx;
  28. }
  29. .historylinecarImg{
  30. width: 46rpx;
  31. height: 46rpx;
  32. }
  33. .historylinecar{
  34. font-weight: 400;font-size: 26rpx;
  35. color: #1A1A1A;
  36. line-height: 37rpx;width: 636rpx;
  37. }
  38. .historyLine{
  39. display: flex;justify-content: space-between;
  40. padding: 30rpx 0;border-top: 1rpx solid #EEEEEE;
  41. }
  42. </style>