|
@@ -8,16 +8,13 @@
|
|
|
<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">
|
|
|
<view>
|
|
|
- <u-image :src="item.images||'@/static/def_imgs.png'" width='120' height="120"></u-image>
|
|
|
+ <u-image :src="item.images||'/static/def_imgs.png'" width='120' height="120"></u-image>
|
|
|
</view>
|
|
|
<view>
|
|
|
- <view class="flex align_center justify_between">
|
|
|
+ <view class="flex justify_between">
|
|
|
<view class="vin-text">
|
|
|
<text class="hj-no">{{item.shelfPlaceCode}}</text>
|
|
|
- <text>{{item.code}}</text>
|
|
|
- </view>
|
|
|
- <view class="time-text">
|
|
|
- 库存:<text>{{item.qty}}个</text>
|
|
|
+ {{item.productName}}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="flex" v-if="item.productTypeSn3=='543766811373752320'" style="padding-top: 5px;">
|
|
@@ -26,7 +23,12 @@
|
|
|
<u-tag :text="item.origCode" mode="light" borderColor="#ffffff" type="warning" size="large"></u-tag>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view>{{item.productName}}</view>
|
|
|
+ <view class="flex align_center justify_between">
|
|
|
+ <view>{{item.code}}</view>
|
|
|
+ <view class="time-text">
|
|
|
+ 库存:<text>{{item.qty}}个</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="padding: 20upx;">
|
|
@@ -143,13 +145,16 @@
|
|
|
}
|
|
|
}
|
|
|
.vin-text{
|
|
|
+ font-weight: bold;
|
|
|
.hj-no{
|
|
|
background: #2196F3;
|
|
|
color: #ffffff;
|
|
|
display: inline-block;
|
|
|
border-radius: 10rpx;
|
|
|
padding: 0 10rpx;
|
|
|
+ font-weight: normal;
|
|
|
margin-right: 10rpx;
|
|
|
+ font-size: 12px;
|
|
|
}
|
|
|
}
|
|
|
&:first-child{
|