From da85a6459bd758a700b26a7882b0e8f5b14c618d Mon Sep 17 00:00:00 2001 From: anthonywj Date: Sun, 6 Aug 2023 16:17:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=A4=87=E4=BB=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- src/views/udi/trace/searchLive/index.vue | 19 +++++++++++-------- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.env.development b/.env.development index d1ffcc2..e389b3c 100644 --- a/.env.development +++ b/.env.development @@ -4,7 +4,7 @@ VUE_APP_TITLE = UDI追溯平台 # 开发环境配置 ENV = 'development' -VUE_APP_BASE_API = 'http://192.168.0.166:9998' +VUE_APP_BASE_API = 'http://127.0.0.1:9998' # 应用访问路径 例如使用前缀 /admin/ VUE_APP_CONTEXT_PATH = '/' diff --git a/src/views/udi/trace/searchLive/index.vue b/src/views/udi/trace/searchLive/index.vue index 14d3073..34ccc7f 100644 --- a/src/views/udi/trace/searchLive/index.vue +++ b/src/views/udi/trace/searchLive/index.vue @@ -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)