|
@@ -7,14 +7,18 @@
|
|
|
此货架存在以下未取货的订单,导致库存被冻结,为方便盘点,请先联系修理厂处理
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="product-main">
|
|
|
- <view v-for="item in list" :key="item.id">
|
|
|
- <view class="flex align_center">
|
|
|
- <view class="l-no"><text>{{item.shelfPlaceCode}}</text>{{item.productCode}}</view>
|
|
|
- <view class="r-nums">冻结库存:<text>{{item.totalQty}}</text> 个</view>
|
|
|
- </view>
|
|
|
- <view class="p-name">{{item.productName}}</view>
|
|
|
- </view>
|
|
|
+ <view>
|
|
|
+ <scroll-view class="product-main" scroll-y>
|
|
|
+ <view>
|
|
|
+ <view class="p-item" v-for="item in list" :key="item.id">
|
|
|
+ <view class="flex align_center">
|
|
|
+ <view class="l-no"><text>{{item.shelfPlaceCode}}</text>{{item.productCode}}</view>
|
|
|
+ <view class="r-nums">冻结库存:<text>{{item.totalQty}}</text> 个</view>
|
|
|
+ </view>
|
|
|
+ <view class="p-name">{{item.productName}}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
</view>
|
|
|
<view class="product-footer">
|
|
|
<view class="button-cancel" @click="isShow=false">返回列表</view>
|
|
@@ -88,9 +92,6 @@
|
|
|
color: #666;
|
|
|
.shelfName{
|
|
|
width: 100%;
|
|
|
- height: 48rpx;
|
|
|
- text-overflow: ellipsis;
|
|
|
- overflow: hidden;
|
|
|
flex-grow: 1;
|
|
|
font-weight: bold;
|
|
|
font-size: 26rpx;
|
|
@@ -106,16 +107,17 @@
|
|
|
}
|
|
|
}
|
|
|
.product-con{
|
|
|
- width: 78%;
|
|
|
- margin: 55% auto 0;
|
|
|
+ width: 600rpx;
|
|
|
+ margin: 16vh auto 0;
|
|
|
background-color: #fff;
|
|
|
border-radius: 24upx;
|
|
|
+ position: relative;
|
|
|
.product-main{
|
|
|
padding: 0 30upx 20upx 30upx;
|
|
|
font-size: 24upx;
|
|
|
- max-height: 30vh;
|
|
|
- overflow: auto;
|
|
|
- > view{
|
|
|
+ height: 40vh;
|
|
|
+ width: 540rpx;
|
|
|
+ .p-item{
|
|
|
border-bottom: 2rpx solid #eee;
|
|
|
padding: 15upx 0;
|
|
|
&:last-child{
|