2021-01-12 20:39:59 +08:00
|
|
|
<template>
|
|
|
|
|
<el-popover :placement="placement" popper-class="nz-pop nz-pop-select-panel" ref="selectPanelPopBox" transition="slide" v-model="popBox.show" width="400">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="pop-item-wider">
|
|
|
|
|
|
|
|
|
|
<slot name="header"></slot>
|
|
|
|
|
|
2021-01-13 16:29:21 +08:00
|
|
|
<div :class="{'movable': !panelLock}" class="select-panel-tree">
|
2021-01-12 20:39:59 +08:00
|
|
|
<el-tree
|
|
|
|
|
:data="panelData"
|
|
|
|
|
:draggable="!panelLock"
|
|
|
|
|
:expand-on-click-node="false"
|
|
|
|
|
:filter-node-method="filterNode"
|
|
|
|
|
:props="{label: 'name', children: 'children'}"
|
|
|
|
|
@node-click="selectPanel"
|
|
|
|
|
@node-drop="nodeDrop"
|
|
|
|
|
check-on-click-node
|
|
|
|
|
check-strictly
|
|
|
|
|
default-expand-all
|
|
|
|
|
highlight-current
|
|
|
|
|
node-key="id"
|
|
|
|
|
ref="panelTree">
|
|
|
|
|
<div class="tree--node" slot-scope="{ node, data }">
|
|
|
|
|
<span>{{ node.label }}</span>
|
|
|
|
|
<span class="tree--operation" v-if="!panelLock">
|
2021-03-10 11:44:48 +08:00
|
|
|
<span @click.stop="deletePanel(data)" class="panel-dropdown-btn panel-dropdown-btn-delete" v-has="'panel_delete'"><i class="nz-icon nz-icon-delete"></i></span>
|
|
|
|
|
<span @click.stop="editPanel(data)" class="panel-dropdown-btn"><i class="nz-icon nz-icon-edit" v-has="'panel_toEdit'"></i></span>
|
2021-01-12 20:39:59 +08:00
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-tree>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div slot="reference">
|
|
|
|
|
<slot name="trigger"></slot>
|
|
|
|
|
</div>
|
|
|
|
|
</el-popover>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
name: "selectPanel",
|
|
|
|
|
props:{
|
|
|
|
|
placement: {type: String},
|
|
|
|
|
isEdit: {type: Boolean, default: true},
|
|
|
|
|
panelData: {type: Array},
|
2021-01-13 15:27:17 +08:00
|
|
|
showPanel: {type: Object},
|
2021-01-12 20:39:59 +08:00
|
|
|
panelLock: {type: Boolean, default: true},
|
|
|
|
|
filterPanel: {type: String},
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
2021-01-14 16:10:38 +08:00
|
|
|
this.$refs.panelTree.setCurrentKey(this.panel);
|
2021-01-12 20:39:59 +08:00
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
filterPanel: {
|
|
|
|
|
immediate: true,
|
|
|
|
|
handler(n) {
|
|
|
|
|
this.$refs.panelTree && this.$refs.panelTree.filter(n);
|
|
|
|
|
}
|
2021-01-13 15:27:17 +08:00
|
|
|
},
|
|
|
|
|
showPanel: {
|
|
|
|
|
immediate: true,
|
|
|
|
|
handler(n) {
|
2021-02-24 17:38:06 +08:00
|
|
|
if (n) {
|
|
|
|
|
this.panel = JSON.parse(JSON.stringify(n));
|
|
|
|
|
}
|
2021-01-14 16:10:38 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/*panel: {
|
|
|
|
|
immediate: true,
|
|
|
|
|
handler(n) {
|
|
|
|
|
if (this.$refs.panelTree) {
|
|
|
|
|
console.info(n.id, n.name)
|
|
|
|
|
this.$refs.panelTree.setCurrentKey(n);
|
2021-01-13 15:27:17 +08:00
|
|
|
}
|
|
|
|
|
}
|
2021-01-14 16:10:38 +08:00
|
|
|
}*/
|
2021-01-12 20:39:59 +08:00
|
|
|
},
|
|
|
|
|
data(){
|
|
|
|
|
return {
|
|
|
|
|
popBox: {show: false},
|
2021-01-14 16:10:38 +08:00
|
|
|
panel: {id: 0, name: ""},
|
2021-01-12 20:39:59 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods:{
|
|
|
|
|
/*
|
|
|
|
|
* node: 被拖的节点
|
|
|
|
|
* relative: 发生关系的节点
|
|
|
|
|
* position: ['before', 'after', 'inner'] 与relative节点的关系
|
|
|
|
|
* */
|
|
|
|
|
nodeDrop(node, relative, position, event) {
|
|
|
|
|
if (position === 'inner') {
|
|
|
|
|
node.data.pid = relative.data.id;
|
|
|
|
|
} else {
|
|
|
|
|
node.data.pid = relative.data.pid;
|
|
|
|
|
}
|
|
|
|
|
this.updateWeight();
|
|
|
|
|
},
|
|
|
|
|
filterNode(value, data) {
|
|
|
|
|
if (!value) return true;
|
|
|
|
|
return data.name.indexOf(value) !== -1;
|
|
|
|
|
},
|
|
|
|
|
updateWeight() {
|
|
|
|
|
let toUpdate = [];
|
|
|
|
|
let count = 0;
|
|
|
|
|
handler(this.panelData);
|
|
|
|
|
|
|
|
|
|
function handler(panelData) {
|
|
|
|
|
panelData.forEach(panel => {
|
|
|
|
|
panel.weight = count++;
|
|
|
|
|
toUpdate.push({id: panel.id, pid: panel.pid, weight: panel.weight});
|
|
|
|
|
if (panel.children && panel.children.length > 0) {
|
|
|
|
|
handler(panel.children);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.$put("/panel/tree", toUpdate);
|
|
|
|
|
},
|
|
|
|
|
deletePanel(data) {
|
|
|
|
|
this.$emit("deletePanel", data);
|
|
|
|
|
},
|
|
|
|
|
editPanel(data) {
|
|
|
|
|
this.$emit("editPanel", data);
|
|
|
|
|
},
|
|
|
|
|
esc(){
|
|
|
|
|
this.popBox.show = false;
|
|
|
|
|
},
|
|
|
|
|
//确认选择某个节点,与父组件交互
|
|
|
|
|
selectPanel(data, checked, child) {
|
2021-01-14 16:10:38 +08:00
|
|
|
this.$emit('selectPanel', data);
|
|
|
|
|
this.$refs.panelTree.setCurrentKey(data);
|
2021-01-12 20:39:59 +08:00
|
|
|
this.esc();
|
|
|
|
|
},
|
|
|
|
|
//tree设为单选
|
2021-01-14 16:10:38 +08:00
|
|
|
/*clearOthers(data, checked, child) {
|
2021-01-12 20:39:59 +08:00
|
|
|
if (checked) {
|
|
|
|
|
this.panel = data;
|
|
|
|
|
this.$refs.panelTree.setCheckedKeys([data.id]);
|
|
|
|
|
} else {
|
|
|
|
|
this.panel = {id: '', name: ''};
|
|
|
|
|
}
|
2021-01-14 16:10:38 +08:00
|
|
|
}*/
|
2021-01-12 20:39:59 +08:00
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
2021-01-13 16:29:21 +08:00
|
|
|
.movable {
|
|
|
|
|
.el-tree-node__content {
|
|
|
|
|
cursor: move;
|
|
|
|
|
.tree--node>span:first-of-type {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.tree--node>span:last-of-type>span {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tree--node>span:last-of-type>span>i {
|
|
|
|
|
font-weight: normal !important;
|
|
|
|
|
}
|
2021-01-12 20:39:59 +08:00
|
|
|
.select-panel-tree {
|
|
|
|
|
height: 350px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
.select-panel-tree .el-tree-node__content {
|
|
|
|
|
height: 34px;
|
|
|
|
|
line-height: 34px;
|
|
|
|
|
}
|
|
|
|
|
.select-panel-tree .el-tree-node__content:hover {
|
|
|
|
|
color: $global-text-color-active;
|
|
|
|
|
}
|
|
|
|
|
.select-panel-tree .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
|
|
|
|
|
background-color: #F5F7FA;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: $global-text-color-active;
|
|
|
|
|
}
|
|
|
|
|
.tree--node {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: calc(100% - 28px);
|
|
|
|
|
}
|
|
|
|
|
.tree--operation {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
.tree--node:hover .tree--operation {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
.panel-dropdown-btn {
|
|
|
|
|
color: #60BEFF;
|
|
|
|
|
}
|
|
|
|
|
.panel-dropdown-btn:hover {
|
|
|
|
|
color: #409EFF;
|
|
|
|
|
}
|
|
|
|
|
.panel-dropdown-btn-delete {
|
|
|
|
|
color: #F98D9A;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-dropdown-btn-delete:hover {
|
|
|
|
|
color: #D96D7A;
|
|
|
|
|
}
|
|
|
|
|
</style>
|