123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734 |
- <template>
- <div>
- <div class="employee_selector_box">
- <el-row :gutter="10">
- <el-col :xs="11" :sm="11" :md="11" :lg="11" :xl="11" class="scroller-box one">
- <div class="search-box">
- <div class="search flex-box" style="margin-bottom: 7px;"><el-input v-model="keyword" placeholder="请输入姓名" clearable></el-input></div>
- <div class="search flex-box" v-if="can_select_dept">
- <el-cascader
- v-model="dept_id"
- ref="dept"
- :options="dept_list"
- :props="{ checkStrictly: true, value: 'id', label: 'name', children: '_child' }"
- clearable
- filterable
- placeholder="全公司"
- ></el-cascader>
- </div>
- </div>
- <div class="flex-box-end" style="padding: 10px;border-bottom: 1px solid #f1f1f1;height: 40px;box-sizing: border-box;">
- <el-checkbox v-if="isChecKedAll && multi" v-model="checked" @change="checkedChange" :indeterminate="indeterminate">全选</el-checkbox>
- </div>
- <el-scrollbar :style="{ height: can_select_dept ? '310px' : '350px' }" :native="false" v-loading="table_loading">
- <div class="choose_left">
- <div class="persons_box" v-if="list.length > 0">
- <div class="employee_cell_a" v-for="(item, index) in list" :key="index">
- <div
- class="employee_cell flex-box flex-v-ce"
- v-if="can_select_employee && item.name.indexOf(keyword) >= 0"
- @click.prevent.stop="select_employee(item)"
- >
- <div class="employee_checkbox"><el-checkbox v-model="item.checked"></el-checkbox></div>
- <img :src="item.img_url" width="30" height="30" class="imgUrl" v-if="item.img_url">
- <div class="imgUrl" v-else style="background: #238DFA;color: #fff;">{{item.name.substring(item.name.length-2)}}</div>
- <div class="employee_name">{{ item.name }}</div>
- </div>
- </div>
- </div>
- <div v-else class="fontColorF" style="text-align: center;margin-top: 50px;">暂无可选人员</div>
- </div>
- </el-scrollbar>
- </el-col>
- <el-col :xs="2" :sm="2" :md="2" :lg="2" :xl="2" class="col-line"><span style="opacity: 0;">空</span></el-col>
- <el-col :xs="11" :sm="11" :md="11" :lg="11" :xl="11" class="scroller-box">
- <div class="option-box flex-box flex-v-ce">
- <div class="fontColorF flex-1" v-show="multi">已选择{{ employee_selected_list.length }}个员工</div>
- <el-button type="type" @click="clear_data()">清空</el-button>
- </div>
- <el-scrollbar wrap-class="column-wrapper scrollable-items-container" :native="false" style="height: 390px;">
- <div class="choose_right">
- <div class="employee_cell flex-box flex-v-ce" v-for="(item, index) in dept_selected_list" :key="index">
- <div class="employee_name">{{ item.dept_name }}</div>
- <div class="employee_delete"><el-button type="default" size="mini" @click="dept_cancel(item)" icon="el-icon-close" circle></el-button></div>
- </div>
- <div class="flex-box-ce employee_cell2" v-for="(item, index) in employee_selected_list" :key="index">
- <div class="flex-box-ce flex-1">
- <img :src="item.img_url" width="30" height="30" style="margin-right: 8px;" class="imgUrl" v-if="item.img_url">
- <div class="imgUrl" v-else style="background: #238DFA;color: #fff;margin-right: 8px;">{{item.name.substring(item.name.length-2)}}</div>
- <div class="userName font-flex-word">{{ item.name }}</div>
- </div>
- <i class="el-icon-error deleteUser" v-if="!item.is_creator || !createDimness" @click="employee_cancel(item, true)"></i>
- </div>
- </div>
- </el-scrollbar>
- </el-col>
- </el-row>
- </div>
- </div>
- </template>
- <script>
- // import Item from './Item'
- // import VirtualList from 'vue-virtual-scroll-list'
- export default {
- props: {
- can_select_dept: {
- //指定是否能选择部门
- type: Boolean,
- default: true
- },
- can_select_employee: {
- //指定是否能选择员工
- type: Boolean,
- default: true
- },
- selected: {
- //已经选择的员工和部门
- type: Object,
- default: () => {
- return {
- employee: [],
- dept: []
- };
- }
- },
- multi: {
- //指定员工是否能多选
- type: Boolean,
- default: true
- },
- dept_multi: {
- //指定部门是否能多选
- type: Boolean,
- default: true
- },
- employee_list: {
- //指定显示的员工列表,注意:传值后组件的员工数据将不是统一向服务器获取的,而是指定的员工列表,格式是:[{id: 1, name: “张三”, img_url: “”}]
- type: Array,
- default: () => {
- return [];
- }
- },
- close_clear_data: {
- //关闭时是否清空选择的数据
- type: Boolean,
- default: true
- },
- max: {
- //当multi为true时,用来限制选择人数,0不生效
- type: Number,
- default: 0
- },
- user_no_select: {
- //是否能选择创始人
- type: Boolean,
- default: true
- },
- isChecKedAll: {
- //是否能全人员
- type: Boolean,
- default: true
- },
- my_no_select: {
- //当前设置人的id,过滤某位人员,一般为自己
- type: Number,
- default: 0
- },
- isCreatorSelect: {
- //当employee_list为空时,依然显示空值而不是显示人员列表
- type: Boolean,
- default: false
- },
- use_Administrator_list: {
- //未指定员工并请求人员接口时,保留管理员,过滤员工
- type: Boolean,
- default: false
- },
- createDimness: {
- //组织架构设置上级专用-不清除创始人
- type: Boolean,
- default: false
- }
- },
- name: 'EmployeeSelector',
- data() {
- let selected = JSON.parse(JSON.stringify(this.selected));
- let user_no_select = JSON.parse(JSON.stringify(this.user_no_select));
- return {
- table_loading: false,
- employee_selected_list: selected.employee,
- dept_selected_list: selected.dept,
- employee_selected: [],
- dept_selected: [],
- com_height: '100%',
- list: [], //人员列表
- dept_name: '', //部门名称
- dept_id: 0, //部门ID
- pid: 0, //部门ID实传
- dept_list: [], //部门列表
- dept_list_arr: [], //收集的部门
- keyword: '', //搜索值
- checked: false, //是否全选
- indeterminate: false,
- not_user: user_no_select,
- all_list: []
- };
- },
- watch: {
- dept_id(val) {
- if (val.length > 1) {
- this.pid = val[val.length - 1];
- } else {
- this.pid = val[0];
- }
- this.$nextTick(() => {
- this.$refs.dept.dropDownVisible = false;
- this.get_user_list();
- this.checked = false;
- });
- },
- selected(val) {
- let selected = JSON.parse(JSON.stringify(val));
- this.employee_selected = [];
- this.dept_selected = [];
- this.employee_selected_list = selected.employee;
- this.dept_selected_list = selected.dept;
- for (let i in selected.employee) {
- this.employee_selected.push(selected.employee[i].id);
- }
- for (let i in selected.dept) {
- this.dept_selected.push(selected.dept[i].dept_id);
- }
- },
- //搜索
- keyword(val) {
- this.checked = false;
- }
- },
- methods: {
- //全选择
- checkedChange(val) {
- if (val) {
- for (let i in this.list) {
- this.$set(this.list[i], 'checked', true);
- }
- this.$nextTick(() => {
- let employeeSelectedList = JSON.parse(JSON.stringify(this.employee_selected_list));
- let employeeSelectedIds = [],
- total = 0;
- employeeSelectedList.forEach(element => {
- employeeSelectedIds.push(element.id);
- });
- for (const i in this.list) {
- if (employeeSelectedIds.includes(this.list[i].id)) {
- total += 1;
- } else {
- this.employee_selected_list.push(this.list[i]);
- }
- }
- this.list.length == total ? (this.indeterminate = true) : (this.indeterminate = false);
- });
- } else {
- this.clear_data();
- }
- },
- //添加或移除已添加的员工
- employee_cancel(item) {
- this.employee_selected_list.map((arr, index) => {
- if (arr.id == item.id) {
- this.employee_selected_list.splice(index, 1);
- }
- });
- this.list.map((arr, index) => {
- if (arr.id == item.id) {
- this.$set(arr, 'checked', false);
- }
- });
- },
- //获取部门
- get_dept_list() {
- this.$axios('get', '/api/department/tree').then(res => {
- this.dept_list = this.getTreeData(res.data.data.list);
- });
- },
- // 递归判断列表,把最后的children设为undefined
- getTreeData(data) {
- for (var i = 0; i < data.length; i++) {
- if (data[i]._child.length < 1) {
- // children若为空数组,则将children设为undefined
- data[i]._child = undefined;
- } else {
- // children若不为空数组,则继续 递归调用 本方法
- this.getTreeData(data[i]._child);
- }
- }
- return data;
- },
- //选择部门
- dept_cancel(item) {
- this.dept_selected.splice(this.dept_selected.indexOf(item.id), 1);
- let delete_index = -1;
- for (let i in this.dept_selected_list) {
- if (this.dept_selected.indexOf(this.dept_selected_list[i].id) < 0) {
- delete_index = i;
- }
- }
- if (delete_index >= 0) {
- this.dept_selected_list.splice(delete_index, 1);
- for (let i in this.dept_list) {
- if (this.dept_list[i].dept_id == item.id) {
- this.$set(this.dept_list[i], 'checked', false);
- }
- }
- }
- },
- //选择员工
- select_employee(item) {
- if (item.checked) {
- item.checked = false;
- this.employee_cancel(item);
- } else {
- if (!this.multi) {
- this.employee_selected = [];
- this.employee_selected_list = [];
- for (let i in this.list) {
- this.$set(this.list[i], 'checked', false);
- }
- }
- if (this.max > 0 && this.employee_selected_list.length == this.max && this.multi) {
- this.$message.error('最多只能选择' + this.max + '人');
- return false;
- }
- this.employee_selected.push(item.id);
- this.employee_selected_list.push({
- id: item.id,
- name: item.name,
- img_url: item.img_url
- });
- item.checked = true;
- }
- },
- clear_data() {
- this.employee_selected = [];
- if(this.createDimness){
- this.employee_selected_list = this.employee_selected_list.filter(x => x.is_creator);
- }else{
- this.employee_selected_list = [];
- }
- this.dept_selected = [];
- this.dept_selected_list = [];
- this.checked = false;
- for (let i in this.list) {
- this.$set(this.list[i], 'checked', false);
- }
- for (let i in this.dept_list) {
- this.$set(this.dept_list[i], 'checked', false);
- }
- },
- close() {
- if (this.close_clear_data) {
- this.employee_selected = [];
- this.employee_selected_list = [];
- this.dept_selected = [];
- this.dept_selected_list = [];
- for (let i in this.list) {
- this.$set(this.list[i], 'checked', false);
- }
- for (let i in this.dept_list) {
- this.$set(this.dept_list[i], 'checked', false);
- }
- }
- },
- confirm() {
- this.$emit('confirm', {
- employee: this.employee_selected_list,
- dept: this.dept_selected_list
- });
- this.close();
- },
- filtration() {
- //获取员工列表,限制已禁用的员工
- this.$axios('get', '/api/employee/index', { dept_id: this.pid, page: 0, page_size: 3000,is_official:1 })
- .then(res => {
- if (res.data.code == 1) {
- let list = res.data.data.list;
- let data = [];
- // list.forEach((item, index) => {
- // if (item.is_official == 1) {
- // data.push(item);
- // }
- // });
- this.userdatars(list);
- } else {
- this.userdatars();
- }
- })
- .catch(() => {
- this.userdatars();
- });
- },
- userdatars(userlist) {
- var employee_selected_list = this.employee_selected_list;
- let list = this.employee_list;
- if (userlist) {
- list = [...userlist].filter(x => [...list].some(y => y.id === x.id));
- }
- list.map(item => {
- item['checked'] = false;
- for (var i in employee_selected_list) {
- //判断传进来的员工是否是员工集合里的,是就设为已点击状态
- if (employee_selected_list[i].id == item.id) {
- item['checked'] = true;
- }
- }
- });
- this.list = list;
- this.table_loading = false;
- },
- //获取员工详情
- get_user_list() {
- this.table_loading = true;
- var that = this;
- var employee_selected_list = this.employee_selected_list;
- if (this.employee_list.length > 0 || this.isCreatorSelect) {
- this.filtration();
- return false;
- }
- this.list = [];
- this.$axios('get', '/api/employee/index', { dept_id: this.pid, keywords: this.keyword, page: 0, page_size: 3000,is_official:1 })
- .then(res => {
- var employee = res.data.data.list || [];
- if (this.use_Administrator_list) {
- //使用管理员列表
- employee = this.useAdministratorList(employee);
- }
- var userAll = [];
- employee.forEach((item, i) => {
- if (!this.not_user && item.is_creator == 1) {
- //过滤创始人
- return null;
- } else if (this.my_no_select == item.id) {
- //过滤掉当前设置人
- return null;
- } else if (item.id) {
- userAll.push(item);
- }
- // 前端先隐藏过滤未开启的人员的功能
- // } else if (item.is_official == 1) {
- // userAll.push(item);
- // }
- });
- userAll.map(item => {
- item['checked'] = false;
- for (var i in employee_selected_list) {
- //判断传进来的员工是否是员工集合里的,是就设为已点击状态
- if (employee_selected_list[i].id == item.id) {
- item['checked'] = true;
- }
- }
- });
- that.list = userAll;
- })
- .finally(() => {
- that.table_loading = false;
- });
- },
- useAdministratorList(list) {
- //过滤掉普通员工,返回管理员
- let arr = [];
- list.forEach((item, i) => {
- if (
- item.employee_detail.role_list.findIndex(
- value => value.name == 'dept_manager' || value.name == 'creator' || value.name == 'point_manager' || value.name == 'admin'
- ) >= 0
- ) {
- arr.push(item);
- }
- });
- return arr;
- }
- },
- created() {
- var that = this;
- that.checked = false;
- setTimeout(() => {
- that.get_user_list();
- if (that.can_select_dept) {
- that.get_dept_list();
- }
- }, 200);
- }
- };
- </script>
- <style scoped>
- .deleteUser{
- font-size: 16px;
- padding: 8px;
- color: #777777;
- cursor: pointer;
- }
- .deleteUser:hover{
- color: #F56C6C;
- }
- .userName{
- width: 170px;
- }
- .employee_selector_box {
- width: 600px;
- padding: 20px;
- box-sizing: border-box;
- margin: 0 auto;
- }
- /* 搜索框 */
- .employee_selector_box .search {
- margin: 0 auto;
- width: 80%;
- }
- /* 左边框 */
- .employee_selector_box .choose_left {
- padding: 8px 10px;
- }
- .employee_selector_box .choose_left .employee_cell {
- border-bottom: 1px #f1f1f1 solid;
- }
- .employee_selector_box .choose_left .employee_checkbox {
- padding-left: 8px;
- }
- .employee_selector_box .choose_left .employee_img_url {
- padding-left: 8px;
- }
- .employee_selector_box .choose_left .employee_name {
- padding-left: 8px;
- }
- /* .employee_selector_box ::v-deep .el-scrollbar__thumb {
- width: 2px;
- margin: 15px 0 0 6px;
- background: #409eff;
- } */
- /* 右边距 */
- .employee_selector_box .option-box {
- padding: 14px;
- }
- .employee_selector_box .choose_right {
- padding: 8px 10px;
- }
- .employee_selector_box .choose_right .employee_delete .el-button {
- transform: scale(0.5);
- background: #c0c4cc;
- }
- .employee_selector_box .choose_right .employee_delete .el-button ::v-deep .el-icon-close {
- color: #fff;
- }
- .employee_selector_box .choose_right .employee_delete .el-button:active {
- background: #409eff;
- }
- .employee_selector_box .choose_right .employee_delete .el-button:active ::v-deep .el-icon-close {
- color: #fff;
- }
- .employee_selector_box .choose_right .employee_cell .employee_name {
- padding-left: 8px;
- }
- .employee_selector_box .choose_right .employee_cell .employee_img_url {
- padding-left: 8px;
- }
- /* 右边距 */
- .employee_cell2{
- padding: 8px 0;
- height: 50px;
- box-sizing: border-box;
- border-bottom: 1px #f1f1f1 solid;
- }
- .employee_selector_box ::v-deep .employee_cell {
- padding: 8px 0;
- height: 50px;
- box-sizing: border-box;
- }
- .employee_selector_box ::v-deep .employee_cell:hover {
- background: #ecf5ff;
- }
- .employee_cell {
- display: -webkit-inline-box;
- cursor: pointer;
- width: 100%;
- color: #606266;
- padding: 8px 0;
- background-color: transparent;
- border-bottom: 1px #f1f1f1 solid;
- }
- .employee_cell .employee_img_url {
- display: table-cell;
- vertical-align: middle;
- width: 30px;
- padding-left: 0px;
- }
- .employee_cell .employee_img_url img {
- width: 24px;
- height: 24px;
- border-radius: 50%;
- }
- .employee_cell .employee_checkbox {
- display: table-cell;
- vertical-align: middle;
- width: 30px;
- text-align: center;
- }
- .employee_cell .employee_name {
- display: table-cell;
- vertical-align: middle;
- color: #606266;
- }
- .employee_delete {
- display: table-cell;
- text-align: right;
- padding-right: 0px;
- }
- .employee_cell_a {
- display: block;
- }
- .employee_cell_a:hover {
- background-color: #ecf5ff;
- border-radius: 4px;
- }
- .dept_child_cell {
- display: table-cell;
- vertical-align: middle;
- }
- .dept_child_cell span {
- float: right;
- padding-right: 8px;
- }
- .dept_child_cell span:hover {
- color: #1c1c1c;
- }
- .dept_child_cell span:active {
- color: #1c1c1c;
- }
- .scroller-box {
- height: 440px;
- padding: 0px !important;
- background-color: #fdfdfd;
- border: 1px solid #eee;
- border-radius: 4px;
- overflow: hidden;
- }
- /* .scroller-box.one{
- height: 440px;
- } */
- .col-line {
- position: relative;
- height: 400px;
- }
- .col-line:before {
- content: ' ';
- width: 1px;
- height: 400px;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 50%;
- background-color: #eee;
- }
- .search-box {
- background-color: #fff;
- padding: 10px 5px;
- border-bottom: 1px solid #eee;
- }
- .option-box {
- padding: 5px;
- background-color: #fff;
- border-bottom: 1px solid #eee;
- margin: 0 -5px;
- }
- .child_btn {
- color: #409eff;
- }
- .dept_path {
- margin: 10px 0;
- display: block;
- white-space: nowrap;
- overflow: auto;
- }
- /*滚动条的宽度*/
- .dept_path::-webkit-scrollbar {
- width: 5px;
- height: 5px;
- }
- /*外层轨道。可以用display:none让其不显示,也可以添加背景图片,颜色改变显示效果*/
- .dept_path::-webkit-scrollbar-track {
- width: 6px;
- background-color: #fff0;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius: 2em;
- }
- /*滚动条的设置*/
- .dept_path::-webkit-scrollbar-thumb {
- background-color: #fff0;
- background-clip: padding-box;
- min-height: 28px;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius: 2em;
- }
- /*滚动条移上去的背景*/
- .dept_path:hover::-webkit-scrollbar-thumb {
- background-color: rgba(144, 147, 153, 0.3);
- }
- .imgUrl{
- border-radius: 50%;
- height: 30px;
- width: 30px;
- box-sizing: border-box;
- text-align: center;
- line-height: 30px;
- font-size: 0.6rem;
- }
- </style>
|