|
|
|
@ -16,7 +16,7 @@
|
|
|
|
<a-col :span="2">
|
|
|
|
<a-col :span="2">
|
|
|
|
<a-form-item label="左右">
|
|
|
|
<a-form-item label="左右">
|
|
|
|
<a-select v-model="queryParam.leftRight" @change="leftRightChange" >
|
|
|
|
<a-select v-model="queryParam.leftRight" @change="leftRightChange" >
|
|
|
|
<a-select-option :value=-1>
|
|
|
|
<a-select-option :value=0>
|
|
|
|
未选择
|
|
|
|
未选择
|
|
|
|
</a-select-option>
|
|
|
|
</a-select-option>
|
|
|
|
<a-select-option :value=1>
|
|
|
|
<a-select-option :value=1>
|
|
|
|
@ -32,7 +32,7 @@
|
|
|
|
<a-col :span="2">
|
|
|
|
<a-col :span="2">
|
|
|
|
<a-form-item label="深浅" v-if="queryParam.side >= 0">
|
|
|
|
<a-form-item label="深浅" v-if="queryParam.side >= 0">
|
|
|
|
<a-select style="width: 50px" :key="queryParam.side" >
|
|
|
|
<a-select style="width: 50px" :key="queryParam.side" >
|
|
|
|
<a-select-option :key=-1>
|
|
|
|
<a-select-option :key=0>
|
|
|
|
未选择
|
|
|
|
未选择
|
|
|
|
</a-select-option>
|
|
|
|
</a-select-option>
|
|
|
|
<a-select-option :key=1>
|
|
|
|
<a-select-option :key=1>
|
|
|
|
@ -127,8 +127,8 @@ export default {
|
|
|
|
statusMap: {0:"未盘点",1:"盘点异常",2:"核对正确",3:"人工核对正确"},
|
|
|
|
statusMap: {0:"未盘点",1:"盘点异常",2:"核对正确",3:"人工核对正确"},
|
|
|
|
queryParam: {
|
|
|
|
queryParam: {
|
|
|
|
lotnum: '',
|
|
|
|
lotnum: '',
|
|
|
|
side : -1,
|
|
|
|
side : '',
|
|
|
|
leftRight : -1
|
|
|
|
leftRight : ''
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listData:[],
|
|
|
|
listData:[],
|
|
|
|
time:[],
|
|
|
|
time:[],
|
|
|
|
@ -152,17 +152,14 @@ export default {
|
|
|
|
dataIndex: "lotnum",
|
|
|
|
dataIndex: "lotnum",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
title: "货位({左右}-{深浅}-{行}-{列})",
|
|
|
|
title: "巷道名称",
|
|
|
|
scopedSlots: {customRender: 'goodsLocation'},
|
|
|
|
dataIndex: "streetName",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "系统托盘条码号",
|
|
|
|
|
|
|
|
dataIndex: "wmsTrayCode",
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
title: "扫描托盘条码号",
|
|
|
|
title: "货位({左右}-{深浅}-{行}-{列})",
|
|
|
|
dataIndex: "trayCode",
|
|
|
|
scopedSlots: {customRender: 'goodsLocation'},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
title: "盘点状态",
|
|
|
|
title: "盘点状态",
|
|
|
|
scopedSlots: {customRender: 'status'},
|
|
|
|
scopedSlots: {customRender: 'status'},
|
|
|
|
@ -173,7 +170,7 @@ export default {
|
|
|
|
width:320,
|
|
|
|
width:320,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
title: "时间",
|
|
|
|
title: "更新时间",
|
|
|
|
dataIndex: "createTime",
|
|
|
|
dataIndex: "createTime",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
@ -209,8 +206,8 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handleChange(value) {
|
|
|
|
handleChange(value) {
|
|
|
|
this.getStreetDetail(value)
|
|
|
|
this.getStreetDetail(value)
|
|
|
|
this.queryParam.leftRight = -1
|
|
|
|
this.queryParam.leftRight = ''
|
|
|
|
this.queryParam.side = -1
|
|
|
|
this.queryParam.side = ''
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 左右货架切换
|
|
|
|
// 左右货架切换
|
|
|
|
@ -218,19 +215,19 @@ export default {
|
|
|
|
if (value == 1) {
|
|
|
|
if (value == 1) {
|
|
|
|
//单伸
|
|
|
|
//单伸
|
|
|
|
if(this.streetDetail.leftType == 0){
|
|
|
|
if(this.streetDetail.leftType == 0){
|
|
|
|
this.queryParam.side = -1
|
|
|
|
this.queryParam.side = ''
|
|
|
|
}else{
|
|
|
|
}else{
|
|
|
|
this.queryParam.side = 0
|
|
|
|
this.queryParam.side = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (value == 2) {
|
|
|
|
} else if (value == 2) {
|
|
|
|
if(this.streetDetail.rightType == 0){
|
|
|
|
if(this.streetDetail.rightType == 0){
|
|
|
|
this.queryParam.side = -1
|
|
|
|
this.queryParam.side = ''
|
|
|
|
}else{
|
|
|
|
}else{
|
|
|
|
this.queryParam.side = 0
|
|
|
|
this.queryParam.side = 0
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else{
|
|
|
|
} else{
|
|
|
|
this.queryParam.side = -1
|
|
|
|
this.queryParam.side = ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handleSearch() {
|
|
|
|
handleSearch() {
|
|
|
|
@ -285,10 +282,9 @@ export default {
|
|
|
|
this.queryParam.startTimestamp = ""
|
|
|
|
this.queryParam.startTimestamp = ""
|
|
|
|
this.queryParam.endTimestamp = ""
|
|
|
|
this.queryParam.endTimestamp = ""
|
|
|
|
this.queryParam.lotnum = ""
|
|
|
|
this.queryParam.lotnum = ""
|
|
|
|
this.queryParam.side = -1
|
|
|
|
this.queryParam.side = ''
|
|
|
|
this.queryParam.leftRight = -1
|
|
|
|
this.queryParam.leftRight = ''
|
|
|
|
this.queryParam.streetId = 0
|
|
|
|
this.queryParam.streetId = 0
|
|
|
|
|
|
|
|
|
|
|
|
this.select = null;
|
|
|
|
this.select = null;
|
|
|
|
this.time = []
|
|
|
|
this.time = []
|
|
|
|
this.pageNum = 1
|
|
|
|
this.pageNum = 1
|
|
|
|
|