confirmFilter () {
let allInfo = {}
if (this.searchValue !== ‘‘) {
allInfo.searchValue = this.searchValue
}
if (this.orgValue !== ‘不限‘) {
allInfo.companyId = this.nowComShowOrgId
}
if (this.deptValue !== ‘不限‘) {
allInfo.deptId = this.nowComShowDeptId
}
if (this.rankChecked.length > 0) {
allInfo.jtRank = this.rankChecked
}
if (this.showYouthPicker !== ‘不限‘) {
allInfo.youthTalent = this.showYouthPicker
}
if (this.showGuanpeiPicker !== ‘不限‘) {
allInfo.traineeManagement = this.showGuanpeiPicker
}
if (this.showGenderPicker !== ‘不限‘) {
allInfo.gender = this.showGenderPicker
}
if (this.polityChecked.length > 0) {
allInfo.political = this.polityChecked
}
if (this.eduChecked.length > 0) {
allInfo.edu = this.eduChecked
}
if (this.degreeChecked.length > 0) {
allInfo.degree = this.degreeChecked
}
if (this.professChecked.length > 0) {
allInfo.zhiCheng = this.professChecked
}
if (this.hkTypeChecked.length > 0) {
allInfo.hukouType = this.hkTypeChecked
}
if (this.ageInterval[0] !== ‘不限‘) {
allInfo.ageFrom = this.ageInterval[0]
}
if (this.ageInterval[1] !== ‘不限‘) {
allInfo.ageTo = this.ageInterval[1]
}
allInfo.employeeStatus = this.employeeStatusChecked
if (this.activeStatusChecked !== ‘不限‘ ) {
allInfo.activeStatus = this.activeStatusChecked
}
console.log(allInfo)
this.$router.push({
name: ‘empHome‘,
params: {
allInfo: allInfo,
loginId: this.loginId
}
})
}