|
@@ -49,7 +49,7 @@
|
|
|
<!--input部分-->
|
|
|
<div class="input-box">
|
|
|
<input type="text" placeholder="搜索姓名或工号、身份"
|
|
|
- v-model="queryParamsData.nickName">
|
|
|
+ v-model="queryParamsData.searchValue">
|
|
|
<p class="el-icon-search" @click="handleQuery"></p>
|
|
|
</div>
|
|
|
<!--面包屑部分-->
|
|
@@ -216,7 +216,7 @@
|
|
|
//关闭弹窗
|
|
|
offDialog(){
|
|
|
this.$set(this,'userDialogType',false);
|
|
|
- this.$set(this.queryParamsData,'nickName',"");
|
|
|
+ this.$set(this.queryParamsData,'searchValue',"");
|
|
|
this.$set(this.queryParams,'nickName',"");
|
|
|
this.$set(this,'deptId',"");
|
|
|
this.$set(this,'userDialogRightList',[]);
|
|
@@ -311,7 +311,7 @@
|
|
|
// 编辑人员页面开启
|
|
|
openDialogButton(index){
|
|
|
let self = this;
|
|
|
- this.$set(this.queryParamsData,'nickName',"");
|
|
|
+ this.$set(this.queryParamsData,'searchValue',"");
|
|
|
this.$set(this.queryParams,'nickName',"");
|
|
|
this.$set(this,'deptId',"");
|
|
|
this.getCatalogList("");
|