|
|
|
@ -1068,20 +1068,20 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
if (this.formView.inOutType == '1') {
|
|
|
|
|
this.inOutType = "入库"
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
this.inOutType = "出库"
|
|
|
|
|
}
|
|
|
|
|
if (this.formView.clientType == '1') {
|
|
|
|
|
this.clientType = "模拟测试客户端"
|
|
|
|
|
}else if (this.formView.clientType == '2'){
|
|
|
|
|
} else if (this.formView.clientType == '2') {
|
|
|
|
|
this.clientType = "UDI自助平台"
|
|
|
|
|
}else if (this.formView.clientType == '3'){
|
|
|
|
|
} else if (this.formView.clientType == '3') {
|
|
|
|
|
this.clientType = "UDI管理系统"
|
|
|
|
|
}else if (this.formView.clientType == '4'){
|
|
|
|
|
} else if (this.formView.clientType == '4') {
|
|
|
|
|
this.clientType = "UDIMS平台"
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
console.log(this.formView)
|
|
|
|
|
console.log(this.formView)
|
|
|
|
|
this.open = true
|
|
|
|
|
},
|
|
|
|
|
onReset() {
|
|
|
|
@ -1117,6 +1117,8 @@ export default {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
sceneSearch(this.filterQuery).then((res) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.recordCode = res.data;
|
|
|
|
|
this.orderTimeOut();
|
|
|
|
@ -1133,6 +1135,10 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
this.geCompanyNameList();
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
@ -1155,9 +1161,6 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
inputer.focus();//别忘了给要监听的节点放置焦点,如果是div一类默认不具备焦点的节点需要给它加上“tabindex”属性。不建议传入document、Body等全局节点,可能会影响其它输入控件的流畅性。
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.geCompanyNameList();
|
|
|
|
|
},
|
|
|
|
|
beforeDestroy() {
|
|
|
|
|
if (this.monitorOrder) {
|
|
|
|
|
clearTimeout(this.monitorOrder)
|
|
|
|
|