|
|
@ -38,6 +38,14 @@ |
|
|
|
<u-input style="margin-left: 20rpx;" confirmType="search" v-model="itemCode" :border="true" |
|
|
|
placeholder="请输入物料代码" @confirm="itemCodeConfirm" /> |
|
|
|
</view> |
|
|
|
<view v-if="isWorkStationCode" class="uni-flex space-between u-col-center" |
|
|
|
style="width: 100%;margin-top: 30rpx;"> |
|
|
|
<view class="" style="font-size: 32rpx;"> |
|
|
|
工位 |
|
|
|
</view> |
|
|
|
<u-input style="margin-left: 86rpx;" confirmType="search" v-model="workStationCode" :border="true" |
|
|
|
placeholder="请输入工位" @confirm="workStationCodeConfirm" /> |
|
|
|
</view> |
|
|
|
<view v-if="isShowFromLocationCode" class="uni-flex space-between u-col-center" |
|
|
|
style="width: 100%;margin-top: 30rpx;"> |
|
|
|
<view class="" style="font-size: 32rpx;"> |
|
|
@ -174,6 +182,10 @@ |
|
|
|
type: Boolean, |
|
|
|
default: true |
|
|
|
}, |
|
|
|
isWorkStationCode: { |
|
|
|
type: Boolean, |
|
|
|
default: false |
|
|
|
}, |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
@ -186,6 +198,7 @@ |
|
|
|
fromAreaCode: '', // 来源库区 |
|
|
|
toAreaCode: '', // 到库区 |
|
|
|
itemCode: '', //物料代码 |
|
|
|
workStationCode:'',//工位 |
|
|
|
creationTime: '', |
|
|
|
status: '1,2', |
|
|
|
isOnToday: false, |
|
|
@ -220,7 +233,8 @@ |
|
|
|
toAreaCode: this.toAreaCode, // 到库区 |
|
|
|
itemCode: this.itemCode, |
|
|
|
creationTime: this.creationTime, |
|
|
|
status: this.status |
|
|
|
status: this.status, |
|
|
|
workStationCode: this.workStationCode, |
|
|
|
} |
|
|
|
return params; |
|
|
|
}, |
|
|
@ -235,6 +249,7 @@ |
|
|
|
this.itemCode = '' |
|
|
|
this.creationTime = '' |
|
|
|
this.status = '1,2' |
|
|
|
this.workStationCode = '' |
|
|
|
this.query() |
|
|
|
}, |
|
|
|
|
|
|
|