|
|
@@ -165,11 +165,7 @@ export default {
|
|
|
return {
|
|
|
// 查询参数
|
|
|
queryParam: {
|
|
|
- filter: this.filter,
|
|
|
- searchType: this.searchType,
|
|
|
- deptId: this.$store.getters.userInfo.deptId,
|
|
|
- searchStartTime: null,
|
|
|
- searchEndTime: null
|
|
|
+
|
|
|
},
|
|
|
visible: true,
|
|
|
// 表头
|
|
|
@@ -304,6 +300,8 @@ export default {
|
|
|
parameter = {
|
|
|
...parameter,
|
|
|
...this.queryParam,
|
|
|
+ filter: this.filter,
|
|
|
+ searchType: this.searchType,
|
|
|
type: 1,
|
|
|
dataScope: {
|
|
|
sortBy: 'asc, desc',
|
|
|
@@ -438,8 +436,10 @@ export default {
|
|
|
},
|
|
|
resetSearchForm() {
|
|
|
this.queryParam = {
|
|
|
- filter: this.filter,
|
|
|
- searchType: this.searchType
|
|
|
+
|
|
|
+ deptId: this.$store.getters.userInfo.deptId,
|
|
|
+ searchStartTime: null,
|
|
|
+ searchEndTime: null
|
|
|
}
|
|
|
this.$refs.table.refresh(true)
|
|
|
},
|