| | |
| | | <view class="has-foot"> |
| | | <form> |
| | | <view class="cu-form-group" v-show="!isconfirm"> |
| | | <view class="title">容器号</view> |
| | | <input placeholder="请扫描容器号" v-model="barcode" focus></input> |
| | | <view class="title">料箱码</view> |
| | | <input placeholder="请扫描料箱码" v-model="barcode" focus></input> |
| | | <text class='cuIcon-close text-gray margin-right-xs' v-show="barcode!==''" @click="clearCode"></text> |
| | | <text class='cuIcon-search text-blue' @click="search"></text> |
| | | </view> |
| | |
| | | </view> |
| | | <view class="cu-item" v-if="check.checkType === 0"> |
| | | <view class="content"> |
| | | <text class="text-gray">料箱库存数:<text class="text-black ">{{item.anfme}}</text></text> |
| | | <text class="text-gray">料箱库存数:<text class="text-black ">{{ $formatQty(item.anfme) }}</text></text> |
| | | </view> |
| | | </view> |
| | | <view class="cu-item"> |
| | |
| | | <view class="title text-blue"><text class="text-red text-xl vertical-middle"></text>实盘数: |
| | | </view> |
| | | <uni-number-box style="width: 70%;" :max="max" v-model="item.checkQty" |
| | | :step='0.000001'></uni-number-box> |
| | | :step="1" :decimal="2"></uni-number-box> |
| | | </view> |
| | | </view> |
| | | </view> |
| | |
| | | </view> |
| | | <view class="cu-item" v-if="check.checkType === 0"> |
| | | <view class="content"> |
| | | <text class="text-gray">库存数:<text class="text-black ">{{item.anfme}}</text></text> |
| | | <text class="text-gray">库存数:<text class="text-black ">{{ $formatQty(item.anfme) }}</text></text> |
| | | </view> |
| | | </view> |
| | | <view class="cu-item"> |
| | |
| | | <view class="title text-blue"><text class="text-red text-xl vertical-middle"></text>实盘数: |
| | | </view> |
| | | <uni-number-box style="width: 70%;" :max="max" v-model="item.checkQty" |
| | | :step='0.000001'></uni-number-box> |
| | | :step="1" :decimal="2"></uni-number-box> |
| | | </view> |
| | | </view> |
| | | </view> |
| | |
| | | let that = this |
| | | if (that.barcode === '' || that.barcode === null) { |
| | | uni.showToast({ |
| | | title: "容器号为空", |
| | | title: "料箱码为空", |
| | | icon: "error", |
| | | }) |
| | | return; |