代码备份

master
anthonywj 2 years ago
parent 0bed5c9c83
commit da85a6459b

@ -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 = '/'

@ -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();//divtabindexdocumentBody
},
created() {
this.geCompanyNameList();
},
beforeDestroy() {
if (this.monitorOrder) {
clearTimeout(this.monitorOrder)

Loading…
Cancel
Save