|
|
@ -99,6 +99,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -192,6 +193,7 @@
|
|
|
|
@keypress.enter.native="enterKey($event)"
|
|
|
|
@keypress.enter.native="enterKey($event)"
|
|
|
|
v-model="formData.code"
|
|
|
|
v-model="formData.code"
|
|
|
|
ref='inputRef'
|
|
|
|
ref='inputRef'
|
|
|
|
|
|
|
|
id="inputer"
|
|
|
|
></el-input>
|
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
@ -332,6 +334,8 @@ import {filterAll, filterAllByLoc, filterAllByUser} from "@/api/basic/invWarehou
|
|
|
|
import {getLocalBusType, getLocalJoinBusType, getLocalJoinByUser} from "../../api/basic/busLocalType";
|
|
|
|
import {getLocalBusType, getLocalJoinBusType, getLocalJoinByUser} from "../../api/basic/busLocalType";
|
|
|
|
import DialogSelectUnit from "./DialogSelectUnit";
|
|
|
|
import DialogSelectUnit from "./DialogSelectUnit";
|
|
|
|
import selectRlDialog from "./DialogSelectRl";
|
|
|
|
import selectRlDialog from "./DialogSelectRl";
|
|
|
|
|
|
|
|
import A from "../../plugin/KeyScaner"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: "idQuery",
|
|
|
|
name: "idQuery",
|
|
|
@ -748,6 +752,22 @@ export default {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
listenerFunction(e) {
|
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log("-----jianting---");
|
|
|
|
|
|
|
|
document.removeEventListener('DOMContentLoaded', arguments.callee, false);
|
|
|
|
|
|
|
|
var inputer = document.getElementById("inputer");
|
|
|
|
|
|
|
|
window.sc = new KeyScaner(inputer);//传入要监听的DOM节点
|
|
|
|
|
|
|
|
sc.onInput = function (text) {
|
|
|
|
|
|
|
|
//onInput事件在检测到回车键按下或在连续输入后超过500ms没有继续输入时触发
|
|
|
|
|
|
|
|
inputer.innerText += (text + "\n");
|
|
|
|
|
|
|
|
console.log("--------" + text);
|
|
|
|
|
|
|
|
// this.formData.code =
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
inputer.focus();//别忘了给要监听的节点放置焦点,如果是div一类默认不具备焦点的节点需要给它加上“tabindex”属性。不建议传入document、Body等全局节点,可能会影响其它输入控件的流畅性。
|
|
|
|
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
findStorageMethod(query) {
|
|
|
|
findStorageMethod(query) {
|
|
|
|
if (this.formData.locStorageCode == null)
|
|
|
|
if (this.formData.locStorageCode == null)
|
|
|
@ -872,12 +892,24 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filters: {},
|
|
|
|
filters: {},
|
|
|
|
mounted() {
|
|
|
|
mounted() {
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
event.stopPropagation();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
var inputer = document.getElementById("inputer");
|
|
|
|
|
|
|
|
window.sc = new A.KeyScaner(inputer);//传入要监听的DOM节点
|
|
|
|
|
|
|
|
sc.onInput = function (text) {
|
|
|
|
|
|
|
|
//onInput事件在检测到回车键按下或在连续输入后超过500ms没有继续输入时触发
|
|
|
|
|
|
|
|
inputer.innerText += (text + "\n");
|
|
|
|
|
|
|
|
console.log("--------" + text);
|
|
|
|
|
|
|
|
// this.formData.code =
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
inputer.focus();//别忘了给要监听的节点放置焦点,如果是div一类默认不具备焦点的节点需要给它加上“tabindex”属性。不建议传入document、Body等全局节点,可能会影响其它输入控件的流畅性。
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
this.formData.code = '';
|
|
|
|
this.formData.code = '';
|
|
|
@ -918,9 +950,13 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.listenerFunction();
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
<style>
|
|
|
|
|
|
|
|
|
|
|
|
.ao-text {
|
|
|
|
.ao-text {
|
|
|
|