|
@@ -16,14 +16,14 @@
|
|
|
</view>
|
|
|
<view class="carinfo flex flex_column align_center">
|
|
|
<view>
|
|
|
- <u-image shape="circle" :src="carInfo&&carInfo.icon||'@/static/def_imgs.png'" width='150' height="150"></u-image>
|
|
|
+ <u-image shape="circle" :src="carInfo?carInfo.icon : '@/static/def_imgs.png'" width='150' height="150"></u-image>
|
|
|
</view>
|
|
|
<view>VIN:{{vinNo}}</view>
|
|
|
- <view>{{carInfo&&carInfo.text||'暂无匹配车型'}}</view>
|
|
|
+ <view>{{carInfo?carInfo.text:'暂无匹配车型'}}</view>
|
|
|
</view>
|
|
|
- <view class="cbutton flex align_center justify_between">
|
|
|
- <u-button @click="copyVin" v-if="vinNo" shape="circle">复制VIN</u-button>
|
|
|
- <u-button @click="copyCar" v-if="carInfo&&carInfo.text" shape="circle">复制车型</u-button>
|
|
|
+ <view class="cbutton flex align_center justify_center">
|
|
|
+ <u-button @click="copyVin" style="margin: 0 10rpx;" v-if="vinNo" shape="circle">复制VIN</u-button>
|
|
|
+ <u-button @click="copyCar" style="margin: 0 10rpx;" v-if="carInfo&&carInfo.text" shape="circle">复制车型</u-button>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|