| | |
| | | </el-col> |
| | | </el-row> |
| | | <div v-show="advancedQueryShow"> |
| | | <el-row style="margin-bottom: 10px;"> |
| | | <el-row style="margin: 10px 0;"> |
| | | <el-col :span="3">编号: |
| | | <el-input v-model="queryParams.empNumb" size="small" maxlength="20" style="width:85px" /> |
| | | </el-col> |
| | |
| | | <el-col :span="4">部门(护卫点): |
| | | <el-input v-model="queryParams.deptName" size="small" maxlength="20" style="width:100px" /> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col :span="7">入职日期: |
| | | <el-date-picker |
| | | v-model="queryParams.entryDateStr" |
| | |
| | | style="width: 300px;" |
| | | /> |
| | | </el-col> |
| | | <el-col :span="7" style="text-align: center">离职日期: |
| | | </el-row> |
| | | <el-row> |
| | | <el-col :span="7">离职日期: |
| | | <el-date-picker |
| | | v-model="queryParams.dimissionDateStr" |
| | | size="small" |
| | |
| | | ref="multipleTable" |
| | | :data="tableData" |
| | | stripe |
| | | :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6'}" |
| | | :cell-style="{padding:'7px 0'}" |
| | | border |
| | | :header-cell-style="{'height':'5.3vh','background-color':'#e6e6e6','text-align':'center'}" |
| | | :cell-style="{padding:'7px 0','text-align':'center'}" |
| | | style="width: 100%;color: #000;" |
| | | > |
| | | <el-table-column type="selection" width="55" /> |
| | |
| | | <el-table-column show-overflow-tooltip="true" prop="education" label="学历" width="60" :formatter="educationFormat" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="nativePlaceName" label="籍贯" width="70" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="empType" label="员工类型" width="80" :formatter="empTypeFormat" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="telePhone" label="联系电话" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="entryDate" label="入职日期" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="dimissionDate" label="离职日期" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="telePhone" label="联系电话" width="120" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="entryDate" label="入职日期" width="130" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="dimissionDate" label="离职日期" width="130" /> |
| | | <el-table-column show-overflow-tooltip="true" prop="empStatus" label="员工状态" width="80"> |
| | | <template slot-scope="{row}"> |
| | | {{ transEmpStatus(row.empStatus) }} |
| | |
| | | }, |
| | | editArchives(row) { |
| | | this.$refs.article.setArchives(row) |
| | | this.dialog.title = '档案管理' |
| | | this.dialog.title = row.empName + '员工档案' |
| | | this.dialog.isVisible = true |
| | | }, |
| | | delEmp() { |