|
@ -6,7 +6,7 @@ |
|
|
|
|
|
|
|
|
<view class="uni-flex" style="flex-direction: column; width: 100%; margin-top: 10rpx"> |
|
|
<view class="uni-flex" style="flex-direction: column; width: 100%; margin-top: 10rpx"> |
|
|
<view class="" style="font-size: 35rpx; margin-bottom: 10rpx"> 库位 </view> |
|
|
<view class="" style="font-size: 35rpx; margin-bottom: 10rpx"> 库位 </view> |
|
|
<u-input style="margin-left: 0rpx" confirmType="search" v-model="locationCode" :border="true" placeholder="请输入库位" :focus="true" /> |
|
|
<uni-easyinput v-model="locationCode" placeholder="请输入库位"></uni-easyinput> |
|
|
</view> |
|
|
</view> |
|
|
<view class="" style="font-size: 35rpx; margin-top: 10rpx; margin-bottom: 10rpx"> |
|
|
<view class="" style="font-size: 35rpx; margin-top: 10rpx; margin-bottom: 10rpx"> |
|
|
库存状态 : |
|
|
库存状态 : |
|
@ -104,6 +104,10 @@ const confirm = () => { |
|
|
emit('onConfirmClick', locationCode.value, state.value) |
|
|
emit('onConfirmClick', locationCode.value, state.value) |
|
|
closeScanPopup() |
|
|
closeScanPopup() |
|
|
} |
|
|
} |
|
|
|
|
|
const clearData = ()=>{ |
|
|
|
|
|
locationCode.value = '' |
|
|
|
|
|
state.value = [] |
|
|
|
|
|
} |
|
|
// 传递给父类 |
|
|
// 传递给父类 |
|
|
const emit = defineEmits(['onConfirmClick', 'switchChangeToday']) |
|
|
const emit = defineEmits(['onConfirmClick', 'switchChangeToday']) |
|
|
</script> |
|
|
</script> |
|
|