dedsudiyu 2 weeks ago
parent
commit
b0006d6031
1 changed files with 5 additions and 6 deletions
  1. 5 6
      src/views/secureAccess/globalWhitelistConfiguration/index.vue

+ 5 - 6
src/views/secureAccess/globalWhitelistConfiguration/index.vue

@@ -5,10 +5,10 @@
       <div class="page-form-title-box">
         <el-form :model="queryParams" class="form-box" ref="queryForm"
                  :inline="true" style="width:100%;">
-          <el-form-item label="" prop="queryParamsData1">
+          <el-form-item label="" prop="searchValue">
             <el-input
               maxLength="30"
-              v-model="queryParams.queryParamsData1"
+              v-model="queryParams.searchValue"
               placeholder="姓名/工号/联系方式"
               style="width: 200px"
             />
@@ -26,6 +26,7 @@
         <el-table class="table-box" v-loading="loading" border :data="dataList">
           <el-table-column label="名称" prop="userName"  show-overflow-tooltip/>
           <el-table-column label="工号" prop="account" width="200" show-overflow-tooltip/>
+          <el-table-column label="联系方式" prop="mobile" width="200" show-overflow-tooltip/>
           <el-table-column label="部门" prop="deptName" width="200" show-overflow-tooltip/>
           <el-table-column label="创建人" prop="createName" width="200" show-overflow-tooltip/>
           <el-table-column label="创建时间" prop="createTime" width="200" show-overflow-tooltip>
@@ -108,8 +109,7 @@
         queryParams:{
           page:1,
           pageSize:20,
-          queryParamsData1:"",
-          queryParamsData2 :null,
+          searchValue:"",
         },
         //列表数据
         dataList:[],
@@ -209,8 +209,7 @@
         this.$set(this,'queryParams',{
           page:1,
           pageSize:20,
-          queryParamsData1:"",
-          queryParamsData2 :null,
+          searchValue:"",
         });
         this.getList();
       },