<template>
|
<flow-dialog :border="false" closeFree width="600px" @ok="selectOk" :title="title" v-model="visible">
|
<div class="picker">
|
<div class="candidate" v-loading="loading">
|
<div class="role-header" >
|
<div>申请人</div>
|
</div>
|
<div class="org-items" style= 'height: 350px'>
|
<el-empty :image-size="100" description="似乎没有数据" v-show="orgs.length === 0"/>
|
<div v-for="(org, index) in orgs" :key="index" :class="orgItemClass(org)" @click="selectChange(org)">
|
<el-checkbox v-model="org.selected" ></el-checkbox>
|
|
<div style="display: inline-block">
|
<i class="iconfont icon-bumen"></i>
|
<span class="name">{{ org.writer_name }}</span>
|
</div>
|
</div>
|
</div>
|
</div>
|
<div class="selected">
|
<div class="count">
|
<span>已选 {{ select.length }} 项</span>
|
<span @click="clearSelected">清空</span>
|
</div>
|
<div class="org-items" style="height: 350px;">
|
<el-empty :image-size="100" description="请点击左侧列表选择数据" v-show="select.length === 0"/>
|
<div v-for="(org, index) in select" :key="index" :class="orgItemClass(org)" >
|
|
|
<div >
|
<i class="iconfont icon-bumen"></i>
|
<span class="name">{{ org.writer_name }}</span>
|
</div>
|
<i class="el-icon-close" @click="noSelected(index)"></i>
|
</div>
|
</div>
|
</div>
|
</div>
|
</flow-dialog>
|
</template>
|
|
<script>
|
import {getEntitySet} from "@/api/design";
|
|
export default {
|
name: "OrgPicker",
|
components: {},
|
props: {
|
title: {
|
default: '请选择',
|
type: String
|
},
|
type: {
|
default: 'org', //org选择部门/人员 user-选人 dept-选部门 role-选角色
|
type: String
|
},
|
multiple: { //是否多选
|
default: false,
|
type: Boolean
|
},
|
selected: {
|
default: () => {
|
return []
|
},
|
type: Array
|
},
|
},
|
data() {
|
return {
|
visible: false,
|
loading: false,
|
checkAll: false,
|
nowDeptId: null,
|
isIndeterminate: false,
|
searchUsers: [],
|
nodes: [],
|
select: [],
|
search: '',
|
deptStack: []
|
}
|
},
|
computed: {
|
deptStackStr() {
|
return String(this.deptStack.map(v => v.name)).replaceAll(',', ' > ')
|
},
|
orgs() {
|
return !this.search || this.search.trim() === '' ? this.nodes : this.searchUsers
|
},
|
showUsers(){
|
return this.search || this.search.trim() !== ''
|
}
|
},
|
watch:{
|
type(o,n){
|
console.log("旧值",o);
|
console.log("新值",n);
|
}
|
},
|
methods: {
|
show() {
|
console.log("show-this.type",this.type)
|
this.visible = true
|
this.init()
|
console.log("init-this.type",this.type)
|
this.getOrgList()
|
},
|
orgItemClass(org){
|
return {
|
'org-item': true,
|
'org-dept-item': org.type === 'dept',
|
'org-user-item': org.type === 'user',
|
'org-role-item': true
|
}
|
},
|
disableDept(node) {
|
return this.type === 'user' && 'dept' === node.type
|
},
|
getOrgList() {
|
console.log("getOrgList,this.type",this.type)
|
this.loading = true
|
// getOrgTree({deptId: this.nowDeptId, type: this.type}).then(rsp => {
|
// this.loading = false
|
// this.nodes = rsp.data
|
// this.selectToLeft()
|
// }).catch(err => {
|
// this.loading = false
|
// this.$message.error(err.response.data)
|
// })
|
let template = {"dataname": "sys_state_board_user","attachMeta":true}
|
getEntitySet(template).then(rsp => {
|
this.loading = false
|
console.log("getEntitySet", rsp.data.data)
|
this.nodes = rsp.data.data.entityset
|
this.selectToLeft()
|
console.log("this.approvalGroups", this.approvalGroups)
|
//this.groups = rsp.data
|
}).catch(err => this.$message.error('系统错误'))
|
},
|
getShortName(name) {
|
if (name) {
|
return name.length > 2 ? name.substring(1, 3) : name;
|
}
|
return '**'
|
},
|
|
selectToLeft() {
|
let nodes = this.search.trim() === '' ? this.nodes : this.searchUsers;
|
nodes.forEach(node => {
|
for (let i = 0; i < this.select.length; i++) {
|
if (this.select[i].id === node.id) {
|
node.selected = true;
|
break;
|
} else {
|
node.selected = false;
|
}
|
}
|
})
|
},
|
selectChange(node) {
|
if (node.selected) {
|
this.checkAll = false;
|
for (let i = 0; i < this.select.length; i++) {
|
if (this.select[i].id === node.id) {
|
this.select.splice(i, 1);
|
break;
|
}
|
}
|
node.selected = false;
|
} else {
|
node.selected = true
|
let nodes = this.search.trim() === '' ? this.nodes : this.searchUsers;
|
if (!this.multiple) {
|
nodes.forEach(nd => {
|
if (node.id !== nd.id) {
|
nd.selected = false
|
}
|
})
|
}
|
if (node.type === 'dept') {
|
if (!this.multiple) {
|
this.select = [node]
|
} else {
|
this.select.unshift(node);
|
}
|
} else {
|
if (!this.multiple) {
|
this.select = [node]
|
} else {
|
this.select.push(node);
|
}
|
}
|
}
|
},
|
noSelected(index) {
|
let nodes = this.nodes;
|
for (let f = 0; f < 2; f++) {
|
for (let i = 0; i < nodes.length; i++) {
|
if (nodes[i].id === this.select[index].id) {
|
nodes[i].selected = false;
|
this.checkAll = false;
|
break;
|
}
|
}
|
nodes = this.searchUsers;
|
}
|
this.select.splice(index, 1)
|
},
|
handleCheckAllChange() {
|
this.nodes.forEach(node => {
|
if (this.checkAll) {
|
if (!node.selected && !this.disableDept(node)) {
|
node.selected = true
|
this.select.push(node)
|
}
|
} else {
|
node.selected = false;
|
for (let i = 0; i < this.select.length; i++) {
|
if (this.select[i].id === node.id) {
|
this.select.splice(i, 1);
|
break;
|
}
|
}
|
}
|
})
|
},
|
nextNode(node) {
|
this.nowDeptId = node.id
|
this.deptStack.push(node)
|
this.getOrgList()
|
},
|
beforeNode() {
|
if (this.deptStack.length === 0) {
|
return;
|
}
|
if (this.deptStack.length < 2) {
|
this.nowDeptId = null
|
} else {
|
this.nowDeptId = this.deptStack[this.deptStack.length - 2].id
|
}
|
this.deptStack.splice(this.deptStack.length - 1, 1);
|
this.getOrgList()
|
},
|
recover() {
|
this.select = []
|
this.nodes.forEach(nd => nd.selected = false)
|
},
|
selectOk() {
|
this.$emit('ok', Object.assign([], this.select.map(v => {
|
v.avatar = undefined
|
return v
|
})))
|
this.visible = false
|
this.recover()
|
},
|
clearSelected(){
|
this.$confirm('您确定要清空已选中的项?', '提示', {
|
confirmButtonText: '确定',
|
cancelButtonText: '取消',
|
type: 'warning'
|
}).then(() => {
|
this.recover()
|
})
|
},
|
close() {
|
this.$emit('close')
|
this.recover()
|
},
|
init() {
|
this.checkAll = false;
|
this.nowDeptId = null;
|
this.deptStack = [];
|
this.nodes = []
|
this.select = Object.assign([], this.selected)
|
this.selectToLeft()
|
}
|
}
|
}
|
</script>
|
|
<style lang="less" scoped>
|
|
@containWidth: 278px;
|
|
.candidate, .selected {
|
position: absolute;
|
display: inline-block;
|
width: @containWidth;
|
height: 400px;
|
border: 1px solid #e8e8e8;
|
}
|
|
.picker {
|
height: 402px;
|
position: relative;
|
text-align: left;
|
.candidate {
|
left: 0;
|
top: 0;
|
|
.role-header{
|
padding: 10px !important;
|
margin-bottom: 5px;
|
border-bottom: 1px solid #e8e8e8;
|
}
|
|
.top-dept{
|
margin-left: 20px;
|
cursor: pointer;
|
color:#38adff;
|
}
|
.next-dept {
|
float: right;
|
color: @theme-primary;
|
cursor: pointer;
|
}
|
|
.next-dept-disable {
|
float: right;
|
color: #8c8c8c;
|
cursor: not-allowed;
|
}
|
|
& > div:first-child {
|
padding: 5px 10px;
|
}
|
|
}
|
|
.selected {
|
right: 0;
|
top: 0;
|
}
|
|
.org-items {
|
overflow-y: auto;
|
height: 310px;
|
|
.el-icon-close {
|
position: absolute;
|
right: 5px;
|
cursor: pointer;
|
font-size: larger;
|
}
|
.org-dept-item {
|
padding: 10px 5px;
|
|
& > div {
|
display: inline-block;
|
|
& > span:last-child {
|
position: absolute;
|
right: 5px;
|
}
|
}
|
}
|
|
.org-role-item {
|
display: flex;
|
align-items: center;
|
padding: 10px 5px;
|
}
|
|
/deep/ .org-user-item {
|
display: flex;
|
align-items: center;
|
padding: 5px;
|
|
& > div {
|
display: inline-block;
|
}
|
|
.avatar {
|
width: 35px;
|
text-align: center;
|
line-height: 35px;
|
background: @theme-primary;
|
color: white;
|
border-radius: 50%;
|
}
|
}
|
|
/deep/ .org-item {
|
margin: 0 5px;
|
border-radius: 5px;
|
position: relative;
|
|
.el-checkbox {
|
margin-right: 10px;
|
}
|
|
.name {
|
margin-left: 5px;
|
}
|
|
&:hover {
|
background: #f1f1f1;
|
}
|
}
|
}
|
}
|
|
.selected {
|
border-left: none;
|
|
.count {
|
width: calc(@containWidth - 20px);
|
padding: 10px;
|
display: inline-block;
|
border-bottom: 1px solid #e8e8e8;
|
margin-bottom: 5px;
|
& > span:nth-child(2) {
|
float: right;
|
color: #c75450;
|
cursor: pointer;
|
}
|
}
|
}
|
|
/deep/ .el-dialog__body {
|
padding: 10px 20px;
|
}
|
|
.disabled{
|
cursor: not-allowed !important;
|
color: #8c8c8c !important;
|
}
|
|
::-webkit-scrollbar {
|
float: right;
|
width: 4px;
|
height: 4px;
|
background-color: white;
|
}
|
|
::-webkit-scrollbar-thumb {
|
border-radius: 16px;
|
background-color: #efefef;
|
}
|
</style>
|