| | |
| | | <el-row> |
| | | <el-col :span="10"> |
| | | <el-form-item label="关键字"> |
| | | <el-input v-model="queryParams.empNumb" placeholder="请输入内容" style="width:200px" /> |
| | | <el-input v-model="queryParams.baseKey" placeholder="请输入内容" style="width:200px" /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="10"> |
| | |
| | | > |
| | | <el-table-column type="selection" :reserve-selection="false" width="50" /> |
| | | <el-table-column v-if="show" prop="empId" label="员工Id" /> |
| | | <el-table-column prop="empNumb" label="员工编号" /> |
| | | <el-table-column prop="empNumb" label="编号" /> |
| | | <el-table-column prop="empName" label="姓名" /> |
| | | <el-table-column prop="certificateNumb" label="身份证号码" width="180" /> |
| | | <el-table-column v-if="show" prop="deptId" label="部门Id" /> |
| | |
| | | multipleSelection: [], |
| | | total: 0, // 总数量 |
| | | queryParams: { |
| | | empNumb: '', |
| | | baseKey: '', |
| | | empStatus: [] |
| | | }, // 查询参数 |
| | | sort: {}, // 排序 |
| | | pagination: { // 分页参数 |
| | | size: 10, |
| | | size: 15, |
| | | num: 1 |
| | | }, |
| | | list: [], // 给table显示的数据 |
| | |
| | | }, |
| | | vagueSearch() { |
| | | this.fetch({ |
| | | empNumb: this.queryParams.empNumb, |
| | | empName: this.queryParams.empNumb, |
| | | deptName: this.queryParams.empNumb |
| | | baseKey: this.queryParams.baseKey, |
| | | empStatus: this.queryParams.empStatus |
| | | }) |
| | | }, |
| | | resetSearch() { |
| | | this.queryParams = { |
| | | empNumb: '', |
| | | empName: '', |
| | | deptName: '' |
| | | baseKey: '', |
| | | empStatus: [] |
| | | } |
| | | this.search() |
| | | }, |