添加回车搜索

yanshishuju
yewj 7 months ago
parent dce1da43cf
commit b30a92b8c2

@ -125,7 +125,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -622,8 +622,6 @@ export default {
.catch()
},
//
orderTop(_this, row) {
@ -700,9 +698,12 @@ export default {
this.bindWorkPlaceVisible = false;
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
onSubmit(_this) {
debugger
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
},
getList() {

@ -115,7 +115,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -636,10 +636,12 @@ export default {
this.getErrorList(this);
}
,
onSubmit() {
this.filterQuery.page = 1;
this.getList();
this.getErrorList(this);
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
_this.getErrorList(_this);
}
,

@ -115,7 +115,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -907,16 +907,18 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;

@ -113,7 +113,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -409,16 +409,18 @@ export default {
this.actDateRange = [];
// this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
getList() {
getSplitCode(this.filterQuery).then(res => {

@ -139,7 +139,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -860,9 +860,11 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
},
getList() {

@ -114,7 +114,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -384,9 +384,11 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
},
getList() {

@ -113,7 +113,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -939,16 +939,18 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;

@ -119,7 +119,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -956,16 +956,18 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;

@ -112,7 +112,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -430,7 +430,13 @@ export default {
});
},
onReset() {
this.filterQuery = {};
this.filterQuery = {
busType: null,
billNo: null,
tagStatusList: [-1, 2],
page: 1,
limit: 10,
};
this.actDateRange = [];
this.getList();
},
@ -450,9 +456,11 @@ export default {
this.bindWorkPlaceVisible = false;
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
},
getList() {

@ -120,7 +120,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -426,13 +426,22 @@ export default {
});
},
onReset() {
this.filterQuery = {}
this.filterQuery = {
busType: null,
tagStatus: 3,
billNo: null,
workPlaceCode: null,
page: 1,
limit: 10
}
this.actDateRange = []
this.getList()
},
onSubmit() {
this.filterQuery.page = 1
this.getList()
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1
_this.getList()
},
getList() {

@ -119,7 +119,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -439,13 +439,22 @@ export default {
});
},
onReset() {
this.filterQuery = {}
this.filterQuery = {
busType: null,
tagStatus: null,
billNo: null,
workPlaceCode: null,
page: 1,
limit: 10
}
this.actDateRange = []
this.getList()
},
onSubmit() {
this.filterQuery.page = 1
this.getList()
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1
_this.getList()
},
getList() {

@ -113,7 +113,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -913,16 +913,18 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;

@ -112,7 +112,7 @@
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
>查询
</el-button
>
@ -615,11 +615,13 @@ export default {
closeDialog() {
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
this.getDraftList();
this.getOtherList();
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
_this.getDraftList();
_this.getOtherList();
},

Loading…
Cancel
Save