|
@@ -49,11 +49,11 @@
|
|
|
<text class="item-detail-text">{{item.currQty}}</text>
|
|
|
{{item.productEntity&&item.productEntity.unit}}
|
|
|
</view>
|
|
|
- <!-- <view>
|
|
|
+ <view>
|
|
|
冻结库存:
|
|
|
<text class="item-detail-text">{{item.freezeQty}}</text>
|
|
|
{{item.productEntity&&item.productEntity.unit}}
|
|
|
- </view> -->
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -133,9 +133,9 @@
|
|
|
<text class="item-detail-text">
|
|
|
可用:{{item.stockQty?item.stockQty:0}} {{item.product&&item.product.unit}}
|
|
|
</text>
|
|
|
- <!-- <text class="item-detail-text">
|
|
|
+ <text class="item-detail-text">
|
|
|
冻结:{{item.freezeQty?item.freezeQty:0}} {{item.product&&item.product.unit}}
|
|
|
- </text> -->
|
|
|
+ </text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -170,7 +170,7 @@
|
|
|
<view class="tabs">
|
|
|
<view>
|
|
|
<view :class="'available'==curType?'active':''" @click="curType=curType=='available'?'':'available'">有可用库存的产品</view>
|
|
|
- <!-- <view :class="'blocked'==curType?'active':''" @click="curType=curType=='blocked'?'':'blocked'">有冻结库存的产品</view> -->
|
|
|
+ <view :class="'blocked'==curType?'active':''" @click="curType=curType=='blocked'?'':'blocked'">有冻结库存的产品</view>
|
|
|
</view>
|
|
|
<view class="flex">
|
|
|
<view :class="item==curTab?'active':''" v-for="item in placeTab" :key="item" @click="curTab=curTab==item?'':item">{{item}}层</view>
|