paint.vue 985 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="box">
  3. <view class="top">
  4. <view class="left">
  5. <image :src="item.brandLogo" mode="widthFix" class="brandLogo">
  6. <view class="car">奥迪 A5 2.0 双离合变速器(DCT) 2017 3.0...</view>
  7. </image>
  8. </view>
  9. <image src="../../static/img/rightArrow.png" mode="" style="width: 30rpx;height: 30rpx;"></image>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style>
  24. .box{
  25. min-height: 100vh;
  26. background-color: #f4f5f7;
  27. }
  28. .top{
  29. background-color: #FFFFFF;
  30. padding: 30rpx 20rpx;
  31. display: flex;
  32. justify-content: space-between;
  33. align-items: center;
  34. }
  35. .left{
  36. display: flex;
  37. align-items: center;
  38. }
  39. .car{
  40. font-size: 28rpx;
  41. color: #333333;
  42. line-height: 40rpx;
  43. /* 隐藏文字显示 ...不换行 */
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. white-space: nowrap;
  47. }
  48. .brandLogo {
  49. width: 42rpx;
  50. height: 42rpx;
  51. }
  52. </style>