代码备份

master
anthonywj 2 years ago
parent 0bed5c9c83
commit da85a6459b

@ -4,7 +4,7 @@ VUE_APP_TITLE = UDI追溯平台
# 开发环境配置 # 开发环境配置
ENV = 'development' ENV = 'development'
VUE_APP_BASE_API = 'http://192.168.0.166:9998' VUE_APP_BASE_API = 'http://127.0.0.1:9998'
# 应用访问路径 例如使用前缀 /admin/ # 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/' VUE_APP_CONTEXT_PATH = '/'

@ -1068,20 +1068,20 @@ export default {
} }
if (this.formView.inOutType == '1') { if (this.formView.inOutType == '1') {
this.inOutType = "入库" this.inOutType = "入库"
}else { } else {
this.inOutType = "出库" this.inOutType = "出库"
} }
if (this.formView.clientType == '1') { if (this.formView.clientType == '1') {
this.clientType = "模拟测试客户端" this.clientType = "模拟测试客户端"
}else if (this.formView.clientType == '2'){ } else if (this.formView.clientType == '2') {
this.clientType = "UDI自助平台" this.clientType = "UDI自助平台"
}else if (this.formView.clientType == '3'){ } else if (this.formView.clientType == '3') {
this.clientType = "UDI管理系统" this.clientType = "UDI管理系统"
}else if (this.formView.clientType == '4'){ } else if (this.formView.clientType == '4') {
this.clientType = "UDIMS平台" this.clientType = "UDIMS平台"
} }
}) })
console.log(this.formView) console.log(this.formView)
this.open = true this.open = true
}, },
onReset() { onReset() {
@ -1117,6 +1117,8 @@ export default {
this.loading = true; this.loading = true;
sceneSearch(this.filterQuery).then((res) => { sceneSearch(this.filterQuery).then((res) => {
this.loading = false; this.loading = false;
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
if (res.code === 20000) { if (res.code === 20000) {
this.recordCode = res.data; this.recordCode = res.data;
this.orderTimeOut(); this.orderTimeOut();
@ -1133,6 +1135,10 @@ export default {
}) })
}, },
}, },
created() {
this.geCompanyNameList();
},
mounted() { mounted() {
document.body.ondrop = function (event) { document.body.ondrop = function (event) {
event.preventDefault(); event.preventDefault();
@ -1155,9 +1161,6 @@ export default {
}; };
inputer.focus();//divtabindexdocumentBody inputer.focus();//divtabindexdocumentBody
}, },
created() {
this.geCompanyNameList();
},
beforeDestroy() { beforeDestroy() {
if (this.monitorOrder) { if (this.monitorOrder) {
clearTimeout(this.monitorOrder) clearTimeout(this.monitorOrder)

Loading…
Cancel
Save