| | |
| | | <td class="td-group"> |
| | | <el-checkbox-group v-model="queryform.entryType" class="fj-checkbox"> |
| | | <el-checkbox label="" @change="selectAllEntryType">全部</el-checkbox> |
| | | <el-checkbox :label="4">新入职</el-checkbox> |
| | | <el-checkbox :label="5">最新入职</el-checkbox> |
| | | <el-checkbox :label="6">返聘入职</el-checkbox> |
| | | <el-checkbox :label="20">新入职</el-checkbox> |
| | | <el-checkbox :label="21">重新新入职</el-checkbox> |
| | | <el-checkbox :label="22">返聘入职</el-checkbox> |
| | | </el-checkbox-group> |
| | | </td> |
| | | </tr> |
| | |
| | | }, |
| | | selectAllAgeStr(val) { |
| | | if (val) { |
| | | this.queryform.ageStr = this.dicListToArr(this.ageStrOptions) |
| | | this.queryform.age = this.dicListToArr(this.ageStrOptions) |
| | | } else { |
| | | this.queryform.ageStr = [] |
| | | this.queryform.age = [] |
| | | } |
| | | }, |
| | | selectAllArchivesStatus(val) { |
| | |
| | | }, |
| | | selectAllEntryType(val) { |
| | | if (val) { |
| | | this.queryParams.entryType = [20, 21, 22] |
| | | this.queryform.entryType = [20, 21, 22] |
| | | } else { |
| | | this.queryParams.entryType = [] |
| | | this.queryform.entryType = [] |
| | | } |
| | | }, |
| | | selectAllEmpCardStatus(val) { |