|
@@ -13,7 +13,12 @@
|
|
|
<u-image :src="item.product&&item.product.productMsg?item.product.productMsg:`../../static/${theme}/def_img@2x.png`" width="128" height="128" border-radius="10"></u-image>
|
|
|
</view>
|
|
|
<view class="pinfo">
|
|
|
- <view class="pname">{{item.product&&item.product.name?item.product.name:'--'}}</view>
|
|
|
+ <view class="pname">
|
|
|
+ <text v-if="item.shelfPlaceCode">
|
|
|
+ {{item.shelfPlaceCode}}
|
|
|
+ </text>
|
|
|
+ {{item.product&&item.product.name?item.product.name:'--'}}
|
|
|
+ </view>
|
|
|
<view class="ptxt flex align_center justify_between">
|
|
|
<view>
|
|
|
<text class="pcode">{{item.product&&item.product.code?item.product.code:'--'}}</text>
|
|
@@ -227,6 +232,15 @@
|
|
|
color: #191919;
|
|
|
font-weight: bold;
|
|
|
margin-bottom: 10rpx;
|
|
|
+ text{
|
|
|
+ font-weight: normal;
|
|
|
+ margin-right: 6rpx;
|
|
|
+ padding: 0 10rpx;
|
|
|
+ background: rgba(3, 54, 146, 0.15);
|
|
|
+ border-radius: 100rpx;
|
|
|
+ color: #033692;
|
|
|
+ font-size: 28rpx;
|
|
|
+ }
|
|
|
}
|
|
|
.pno{
|
|
|
background-color: rgba(3, 54, 146, 0.15);
|