1.流向查询,分段扫码不勾选时扫描枪扫描之后自动回车,触发查询

master
x_z 3 years ago
parent 7cc98a02d9
commit 955820ed75

@ -202,6 +202,7 @@ export default {
limit: 20
},
codeQuery: { code: null },
sitcomScan: false,
checkStatus: {
error: "校验异常",
null: "未校验",
@ -316,6 +317,14 @@ export default {
this.actDateRange = [];
this.getList();
},
enterKey(event) {
if (this.sitcomScan) {
return;
} else {
this.$refs.inputRef.select();
this.onSubmit();
}
},
onSubmit() {
if (this.actDateRange != null) {
this.filterQuery.startTime = this.actDateRange[0];

Loading…
Cancel
Save