|
@@ -5,7 +5,7 @@
|
|
|
<swiper-item class="swiper-item" style="height: 100%;width: 100%;overflow: hidden;">
|
|
|
<scroll-view scroll-y style="height: 100%;width: 100%;overflow: auto;" @scrolltolower="onreachBottom">
|
|
|
<view class="list-item flex align_center justify_between" v-for="item in list" :key="item.id" @click="toChoosePart(item)">
|
|
|
- <view>
|
|
|
+ <view v-if="userInfo&&userInfo.sysUserFlag == '1'">
|
|
|
<u-image shape="circle" :src="item.icon||'@/static/def_imgs.png'" width='90' height="90"></u-image>
|
|
|
</view>
|
|
|
<view>
|
|
@@ -13,7 +13,7 @@
|
|
|
<text class="vin-text">{{item.vinCode}}</text>
|
|
|
<text class="time-text">{{item.createDate}}</text>
|
|
|
</view>
|
|
|
- <view v-if="userInfo.sysUserFlag == '1'">{{item.modelInfo}}</view>
|
|
|
+ <view v-if="userInfo&&userInfo.sysUserFlag == '1'">{{item.modelInfo}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="padding: 20upx;">
|