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