byItem.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="historyLine" >
  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 class="title">机油推荐</view>
  10. <view class="lineBox flex">
  11. <view class="line">
  12. <view class="lineTitle">机油</view>
  13. <view class="lineEnglish">Engine Oil</view>
  14. <view class="lineImgbox">
  15. <image src="../../static/img/icon_jiyou.png" mode="" class="lineImg1"></image>
  16. </view>
  17. </view>
  18. <view class="line">
  19. <view class="lineTitle">变速箱油</view>
  20. <view class="lineEnglish">Gearbox Oil</view>
  21. <view class="lineImgbox">
  22. <image src="../../static/img/icon_biansuxiang.png" mode="" class="lineImg2"></image>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. components: {
  31. },
  32. data() {
  33. return {
  34. }
  35. },
  36. onLoad(opt) {
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style scoped>
  43. .content{
  44. min-height: 100vh;
  45. background: #F4F5F7;
  46. }
  47. .box{
  48. padding: 0 24rpx;
  49. background: #ffffff;
  50. }
  51. .historylinecarImg{
  52. width: 46rpx;
  53. height: 46rpx;
  54. }
  55. .historylinecar{
  56. font-weight: 400;font-size: 26rpx;
  57. color: #1A1A1A;
  58. line-height: 37rpx;width: 636rpx;
  59. }
  60. .historyLine{
  61. display: flex;justify-content: space-between;
  62. padding: 30rpx 0;border-top: 1rpx solid #EEEEEE;
  63. }
  64. .title{
  65. font-weight: 500;font-size: 28rpx;
  66. color: #1A1A1A;padding: 30rpx 24rpx;
  67. line-height: 40rpx;
  68. }
  69. .lineBox{
  70. padding: 0 24rpx;
  71. }
  72. .line{
  73. width: 332rpx;
  74. height: 206rpx;
  75. background: #FFFFFF;
  76. border-radius: 16rpx;
  77. }
  78. .lineTitle{
  79. font-weight: 500;font-size: 28rpx;padding-top: 32rpx;
  80. color: #1A1A1A;padding-left: 30rpx;
  81. line-height: 40rpx;
  82. }
  83. .lineEnglish{
  84. font-weight: 400;font-size: 24rpx;
  85. color: #999999;padding-left: 30rpx;
  86. line-height: 34rpx;padding-top: 10rpx;
  87. }
  88. .lineImg1{
  89. width: 82rpx;height: 92rpx;
  90. }
  91. .lineImgbox{
  92. text-align: right;
  93. }
  94. .lineImg2{
  95. width: 106rpx;height: 82rpx; margin-top: 10rpx;
  96. }
  97. </style>