123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <template>
- <view class="content">
- <view class="box">
- <view class="historyLine" >
- <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 class="title">机油推荐</view>
-
- <view class="lineBox flex">
- <view class="line">
- <view class="lineTitle">机油</view>
- <view class="lineEnglish">Engine Oil</view>
- <view class="lineImgbox">
- <image src="../../static/img/icon_jiyou.png" mode="" class="lineImg1"></image>
- </view>
- </view>
- <view class="line">
- <view class="lineTitle">变速箱油</view>
- <view class="lineEnglish">Gearbox Oil</view>
- <view class="lineImgbox">
- <image src="../../static/img/icon_biansuxiang.png" mode="" class="lineImg2"></image>
- </view>
- </view>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- components: {
-
- },
- data() {
- return {
-
- }
- },
- onLoad(opt) {
-
- },
- methods: {
-
- }
- }
- </script>
- <style scoped>
- .content{
- min-height: 100vh;
- background: #F4F5F7;
- }
- .box{
- padding: 0 24rpx;
- background: #ffffff;
- }
- .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;
- }
- .title{
- font-weight: 500;font-size: 28rpx;
- color: #1A1A1A;padding: 30rpx 24rpx;
- line-height: 40rpx;
- }
- .lineBox{
- padding: 0 24rpx;
- }
- .line{
- width: 332rpx;
- height: 206rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- }
- .lineTitle{
- font-weight: 500;font-size: 28rpx;padding-top: 32rpx;
- color: #1A1A1A;padding-left: 30rpx;
- line-height: 40rpx;
- }
- .lineEnglish{
- font-weight: 400;font-size: 24rpx;
- color: #999999;padding-left: 30rpx;
- line-height: 34rpx;padding-top: 10rpx;
- }
- .lineImg1{
- width: 82rpx;height: 92rpx;
- }
- .lineImgbox{
- text-align: right;
- }
- .lineImg2{
- width: 106rpx;height: 82rpx; margin-top: 10rpx;
- }
- </style>
|