绩效考核PC端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
5.1 KiB

<!--
@ 作者: 秦东
@ 时间: 2023-03-20 15:41:47
@ 备注: 选择成员模组
-->
<template>
<el-dialog title="选择成员" :visible.sync="visibleDialog" width="600px" append-to-body class="promoter_person">
<div class="person_body clear">
<div class="person_tree l">
<input type="text" placeholder="搜索成员" v-model="searchVal" @input="getDebounceData($event)">
<p class="ellipsis tree_nav" v-if="!searchVal">
<span @click="getDepartmentList(309)" class="ellipsis">所有</span>
<span v-for="(item,index) in departments.titleDepartments" class="ellipsis"
:key="index+'a'" @click="getDepartmentList(item.id)">{{item.departmentName}}</span>
</p>
<selectBox :list="list"/>
</div>
<selectResult :total="total" @del="delList" :list="resList"/>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="$emit('update:visible',false)"> </el-button>
<el-button type="primary" @click="saveDialog"> </el-button>
</span>
</el-dialog>
</template>
<script>
import selectBox from '../selectBox.vue';
import selectResult from '../selectResult.vue';
import mixins from './mixins'
export default {
components: { selectBox,selectResult },
mixins: [mixins],
props: ['visible', 'data', 'isDepartment'],
data() {
return {
checkedDepartmentList: [],
checkedEmployessList: [],
}
},
created(){
},
watch: {
visible(val) {
this.visibleDialog = this.visible
if (val) {
this.getDepartmentList();
this.searchVal = "";
if(this.data){
this.checkedEmployessList = this.data.filter(item => item.type === 1).map(({ name, targetId ,icon ,iconToBase64}) => ({
employeeName: name,
id: targetId,
icon: icon,
iconToBase64: iconToBase64
}));
this.checkedDepartmentList = this.data.filter(item => item.type === 3).map(({ name, targetId }) => ({
departmentName: name,
id: targetId
}));
}
}
},
visibleDialog(val) {
this.$emit('update:visible', val)
}
},
computed: {
total() {
return this.checkedDepartmentList.length + this.checkedEmployessList.length
},
list() {
if (this.activeName === '2') {
return [{
type: 'role',
not: false,
data: this.roles,
isActiveItem: (item) => this.$func.toggleClass(this.checkedRoleList, item, 'roleId'),
change: (item) => this.$func.toChecked(this.checkedRoleList, item, 'roleId')
}]
} else {
return [{
isDepartment: this.isDepartment,
type: 'department',
data: this.departments.childDepartments,
isActive: (item) => this.$func.toggleClass(this.checkedDepartmentList, item),
change: (item) => this.$func.toChecked(this.checkedDepartmentList, item),
next: (item) => this.getDepartmentList(item.id)
}, {
type: 'employee',
data: this.departments.employees,
isActive: (item) => this.$func.toggleClass(this.checkedEmployessList, item),
change: (item) => this.$func.toChecked(this.checkedEmployessList, item),
}]
}
},
//已选择
resList() {
let data = [{
type: 'employee',
data: this.checkedEmployessList,
cancel: (item) => this.$func.removeEle(this.checkedEmployessList, item)
}]
if (this.isDepartment) {
data.unshift({
type: 'department',
data: this.checkedDepartmentList,
cancel: (item) => this.$func.removeEle(this.checkedDepartmentList, item)
})
}
// console.log("已选择----》",data)
return data
}
},
methods:{
saveDialog() {
let checkedList = [...this.checkedDepartmentList, ...this.checkedEmployessList].map(item => ({
type: item.employeeName ? "1" : "3",
targetId: item.id,
icon: item.icon,
iconToBase64: item.iconToBase64,
name: item.employeeName || item.departmentName
}))
// console.log("checkedList--->",checkedList);
this.$emit('change', checkedList)
},
//清除已选择
delList() {
this.checkedDepartmentList = [];
this.checkedEmployessList = []
}
}
}
</script>
<style>
@import "../../css/dialog.css";
</style>