You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vue3-org-chart/src/views/resource-chart.vue

122 lines
3.4 KiB
Vue

<template>
<div style="display: flex; padding: 10px;">
<div style="margin-right: 10px"><el-switch v-model="horizontal"></el-switch> 横向</div>
<div style="margin-right: 10px"><el-button @click="exportToPDF" type="primary">导出PDF</el-button></div>
<div style="margin-right: 10px"><el-button @click="exportImage" type="primary">导出图片</el-button></div>
</div>
1 year ago
<div id="tree-container" style="height: 600px;">
<vue3-tree-org
ref="treeChart"
:data="treeData"
center
:props="{children: 'childrens'}"
1 year ago
:define-menus="defineMenus"
:horizontal="horizontal"
:collapsable="collapsable"
:label-style="style"
@on-expand="onExpand"
1 year ago
@on-node-click="onNodeClick"
/>
1 year ago
</div>
<view-dialog ref="viewDialog"/>
</template>
<script>
1 year ago
import { ElSwitch, ElButton, ElMessage } from 'element-plus'
import html2pdf from 'html2pdf.js'
import { ref } from 'vue'
import domToImage from 'dom-to-image';
1 year ago
import {selectResourceChart} from '@/api/chart'
import ViewDialog from '@/components/ViewDialog.vue'
export default {
name: "resource-chart",
components: {
ElSwitch,
1 year ago
ViewDialog,
ElButton
},
setup() {
},
data() {
return {
1 year ago
treeData:{},
horizontal: false,
collapsable: true,
onlyOneNode: false,
expandAll: true,
disaled: false,
1 year ago
defineMenus:[],
style: {
background: "#fff",
color: "#5e6d82",
},
};
},
created() {
1 year ago
selectResourceChart().then(res=>{
this.treeData = res.data.data;
this.toggleExpand(res.data.data, this.expandAll);
})
.catch(err=>{
ElMessage.error(err.msg);
})
},
methods: {
exportImage() {
1 year ago
const treeOrgEl = this.$refs.treeChart.$el;
domToImage.toPng(treeOrgEl) // 转换为 PNG 格式
.then(function (dataURL) {
const link = document.createElement('a');
link.href = dataURL;
link.download = 'tree_image.png';
link.click();
link.remove();
})
.catch(function (error) {
console.error('导出图片出错:', error);
});
},
exportToPDF() {
const element = document.getElementById('tree-container') // 获取 TreeOrg 组件的容器元素
const options = {
filename: 'tree-structure.pdf', // 导出的文件名,可以根据实际需求更改
jsPDF: { format: 'letter' }
}
html2pdf().set(options).from(element).save();
},
onExpand(e, data) {
console.log(e, data);
},
onExpandAll(b) {
console.log(b)
},
1 year ago
onNodeClick(e, data) {
this.$refs.viewDialog.openDialog(data);
},
expandChange() {
// this.toggleExpand(this.data, this.expandAll);
},
toggleExpand(data, val) {
if (Array.isArray(data)) {
data.forEach((item) => {
item.expand = val
if (item.childrens) {
this.toggleExpand(item.childrens, val);
}
});
} else {
data.expand = val
if (data.childrens) {
this.toggleExpand(data.childrens, val);
}
}
},
},
};
</script>