|
@@ -62,7 +62,7 @@
|
|
</el-select>
|
|
</el-select>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :xs="24" :sm="12" :lg="8" :span="6">
|
|
<el-col :xs="24" :sm="12" :lg="8" :span="6">
|
|
- <el-button class="filter-item" type="success" @click="searchList" v-loading.fullscreen.lock="loading"
|
|
|
|
|
|
+ <el-button class="filter-item" type="success" @click="searchList"
|
|
round>搜索
|
|
round>搜索
|
|
</el-button>
|
|
</el-button>
|
|
<el-button class="filter-item" round type="info" @click="resetSearch()">重置
|
|
<el-button class="filter-item" round type="info" @click="resetSearch()">重置
|
|
@@ -395,24 +395,23 @@ export default {
|
|
allotDepartment: [],
|
|
allotDepartment: [],
|
|
clientManagers: [],
|
|
clientManagers: [],
|
|
principals: [],
|
|
principals: [],
|
|
- loading: false,
|
|
|
|
}
|
|
}
|
|
|
|
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
resetSearch() {
|
|
resetSearch() {
|
|
// 重置分页
|
|
// 重置分页
|
|
- this.loading = true;
|
|
|
|
|
|
+ // this.loading = true;
|
|
this.orderDate = '';
|
|
this.orderDate = '';
|
|
this.$emit('resetParams');
|
|
this.$emit('resetParams');
|
|
- setTimeout(() => {
|
|
|
|
- this.loading = false;
|
|
|
|
- }, 500);
|
|
|
|
|
|
+ // setTimeout(() => {
|
|
|
|
+ // this.loading = false;
|
|
|
|
+ // }, 500);
|
|
},
|
|
},
|
|
|
|
|
|
searchList() {
|
|
searchList() {
|
|
// 重置分页
|
|
// 重置分页
|
|
- this.loading = true;
|
|
|
|
|
|
+ // this.loading = true;
|
|
this.listQuery.page = 1
|
|
this.listQuery.page = 1
|
|
this.listQuery.size = 20
|
|
this.listQuery.size = 20
|
|
if (this.orderDate) {
|
|
if (this.orderDate) {
|
|
@@ -423,9 +422,9 @@ export default {
|
|
this.listQuery.endDate = null;
|
|
this.listQuery.endDate = null;
|
|
}
|
|
}
|
|
this.$emit('fliterSearch', this.listQuery);
|
|
this.$emit('fliterSearch', this.listQuery);
|
|
- setTimeout(() => {
|
|
|
|
- this.loading = false;
|
|
|
|
- }, 500);
|
|
|
|
|
|
+ // setTimeout(() => {
|
|
|
|
+ // this.loading = false;
|
|
|
|
+ // }, 500);
|
|
},
|
|
},
|
|
|
|
|
|
moreSearch() {
|
|
moreSearch() {
|