2021-01-12 20:39:59 +08:00
|
|
|
|
<template>
|
2021-10-29 12:02:34 +08:00
|
|
|
|
<el-popover :placement="placement" :popper-class="chartBox === true ? 'nz-pop nz-pop-select-panel right-box-select-top nz-pop-select-panel__dropdown' : 'nz-pop nz-pop-select-panel right-box-select-top right-public-box-dropdown-top nz-pop-select-panel__dropdown'" ref="selectPanelPopBox" transition="slide" v-model="popBox.show" :width="chartBox === true ? 626 : 310" :disabled="disabled">
|
2021-01-12 20:39:59 +08:00
|
|
|
|
<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 }">
|
2021-09-24 17:57:24 +08:00
|
|
|
|
<span :title="node.label + ' (' + data.chartNum +' charts)' ">{{ node.label }}</span>
|
2021-08-25 10:59:33 +08:00
|
|
|
|
<el-row class="block-col-2" v-if="!panelLock" style="width: 35px;">
|
2021-08-25 10:38:46 +08:00
|
|
|
|
<el-col>
|
2021-09-28 14:23:51 +08:00
|
|
|
|
<el-dropdown placement="bottom-end" trigger="click">
|
2021-08-25 10:38:46 +08:00
|
|
|
|
<span class="el-dropdown-link tree--operation" @click.stop><i class="nz-icon nz-icon-more1"></i></span>
|
2022-01-11 11:00:03 +08:00
|
|
|
|
<el-dropdown-menu class="right-box-select-top" slot="dropdown" v-has="['main_edit', 'main_delete']">
|
2021-08-25 10:38:46 +08:00
|
|
|
|
<el-dropdown-item>
|
2021-11-22 09:44:05 +08:00
|
|
|
|
<div @click="editPanel(data)"><i v-has="'panel_edit'" class="nz-icon nz-icon-edit"></i>{{$t('overall.edit')}}</div>
|
2021-08-25 10:38:46 +08:00
|
|
|
|
</el-dropdown-item>
|
|
|
|
|
|
<el-dropdown-item>
|
2022-02-22 14:12:29 +08:00
|
|
|
|
<div @click="deletePanel(data)" v-has="'main_delete'"><i class="nz-icon nz-icon-delete"></i>{{$t('overall.delete')}}</div>
|
2021-08-25 10:38:46 +08:00
|
|
|
|
</el-dropdown-item>
|
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
2021-01-12 20:39:59 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</el-tree>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div slot="reference">
|
|
|
|
|
|
<slot name="trigger"></slot>
|
|
|
|
|
|
</div>
|
2021-08-25 10:38:46 +08:00
|
|
|
|
<div slot="default">
|
|
|
|
|
|
<slot name="tail"></slot>
|
|
|
|
|
|
</div>
|
2021-01-12 20:39:59 +08:00
|
|
|
|
</el-popover>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2021-03-19 18:52:19 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: 'selectPanel',
|
|
|
|
|
|
props: {
|
|
|
|
|
|
placement: { type: String },
|
|
|
|
|
|
isEdit: { type: Boolean, default: true },
|
|
|
|
|
|
panelData: { type: Array },
|
|
|
|
|
|
showPanel: { type: Object },
|
|
|
|
|
|
panelLock: { type: Boolean, default: true },
|
2021-04-08 17:49:07 +08:00
|
|
|
|
disabled: { type: Boolean, default: false },
|
2021-10-20 09:40:52 +08:00
|
|
|
|
filterPanel: { type: String },
|
|
|
|
|
|
chartBox: { type: Boolean }
|
2021-03-19 18:52:19 +08:00
|
|
|
|
},
|
|
|
|
|
|
mounted () {
|
|
|
|
|
|
this.$refs.panelTree.setCurrentKey(this.panel)
|
|
|
|
|
|
},
|
|
|
|
|
|
watch: {
|
|
|
|
|
|
filterPanel: {
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
handler (n) {
|
|
|
|
|
|
this.$refs.panelTree && this.$refs.panelTree.filter(n)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
showPanel: {
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
handler (n) {
|
|
|
|
|
|
if (n) {
|
|
|
|
|
|
this.panel = JSON.parse(JSON.stringify(n))
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
/* panel: {
|
2021-01-14 16:10:38 +08:00
|
|
|
|
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-03-19 18:52:19 +08:00
|
|
|
|
} */
|
|
|
|
|
|
},
|
|
|
|
|
|
data () {
|
|
|
|
|
|
return {
|
|
|
|
|
|
popBox: { show: false },
|
|
|
|
|
|
panel: { id: 0, name: '' }
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
/*
|
2021-01-12 20:39:59 +08:00
|
|
|
|
* node: 被拖的节点
|
|
|
|
|
|
* relative: 发生关系的节点
|
|
|
|
|
|
* position: ['before', 'after', 'inner'] 与relative节点的关系
|
|
|
|
|
|
* */
|
2021-03-19 18:52:19 +08:00
|
|
|
|
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 () {
|
|
|
|
|
|
const toUpdate = []
|
|
|
|
|
|
let count = 0
|
|
|
|
|
|
handler(this.panelData)
|
2021-01-12 20:39:59 +08:00
|
|
|
|
|
2021-03-19 18:52:19 +08:00
|
|
|
|
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)
|
2021-01-12 20:39:59 +08:00
|
|
|
|
}
|
2021-03-19 18:52:19 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
2021-01-12 20:39:59 +08:00
|
|
|
|
|
2021-04-07 11:21:12 +08:00
|
|
|
|
this.$put('visual/panel/tree', toUpdate)
|
2021-03-19 18:52:19 +08:00
|
|
|
|
},
|
|
|
|
|
|
deletePanel (data) {
|
|
|
|
|
|
this.$emit('deletePanel', data)
|
|
|
|
|
|
},
|
|
|
|
|
|
editPanel (data) {
|
|
|
|
|
|
this.$emit('editPanel', data)
|
|
|
|
|
|
},
|
|
|
|
|
|
esc () {
|
|
|
|
|
|
this.popBox.show = false
|
|
|
|
|
|
},
|
|
|
|
|
|
// 确认选择某个节点,与父组件交互
|
|
|
|
|
|
selectPanel (data, checked, child) {
|
|
|
|
|
|
this.$emit('selectPanel', data)
|
|
|
|
|
|
this.$refs.panelTree.setCurrentKey(data)
|
|
|
|
|
|
this.esc()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2021-01-12 20:39:59 +08:00
|
|
|
|
</script>
|