|
@@ -232,15 +232,12 @@ export default {
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
|
- // this.resetForm("queryForm");
|
|
|
- this.$set(this,'queryParams',{
|
|
|
- pageNum: 1,
|
|
|
- pageSize:20,
|
|
|
- deptId: '',
|
|
|
- userName: '',
|
|
|
- nickName: '',
|
|
|
- phonenumber: ''
|
|
|
- })
|
|
|
+ this.$set(this.queryParams,'pageNum',1);
|
|
|
+ this.$set(this.queryParams,'pageSize',20);
|
|
|
+ this.$set(this.queryParams,'nickName','');
|
|
|
+ this.$set(this.queryParams,'userName','');
|
|
|
+ this.$set(this.queryParams,'phonenumber','');
|
|
|
+ this.$set(this.queryParams,'deptId','');
|
|
|
this.handleQuery();
|
|
|
},
|
|
|
// 多选框选中数据
|