|
|
|
@ -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 => {
|
|
|
|
|