vue 甘特圖 vxe-gantt 自定義任務條插槽模板的用法
https://gantt.vxeui.com

過設置 taskBar 插槽來自定義模板
<template>
<div>
<vxe-gantt v-bind="ganttOptions">
<template #task-bar-overview="{ row }">
<div class="custom-task-bar" :style="{ backgroundColor: row.bgColor }">
<div class="custom-task-txt">總進度:{{ row.progress }}%</div>
</div>
</template>
<template #task-bar="{ row }">
<div class="custom-task-bar" :style="{ backgroundColor: row.bgColor }">
<div>
<vxe-image :src="row.imgUrl" height="30" circle></vxe-image>
</div>
<div>
<div class="custom-task-txt">{{ row.title }}</div>
<div class="custom-task-txt">已完成:{{ row.progress }}%</div>
</div>
</div>
</template>
</vxe-gantt>
</div>
</template>
<script setup>
import { reactive } from 'vue'
import { VxeGanttTaskType } from 'vxe-gantt'
const ganttOptions = reactive({
border: true,
height: 500,
treeConfig: {
transform: true,
rowField: 'id',
parentField: 'parentId'
},
taskBarSubviewConfig: {
showOverview: true
},
taskBarConfig: {
showContent: true,
barStyle: {
round: true
}
},
taskViewConfig: {
tableStyle: {
width: 380
}
},
columns: [
{ field: 'title', title: '任務名稱', minWidth: 140, treeNode: true },
{ field: 'start', title: '開始時間', width: 100 },
{ field: 'end', title: '結束時間', width: 100 }
],
data: [
{ id: 10001, parentId: null, title: 'A項目', start: '', end: '', progress: 0, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar3.jpeg', type: VxeGanttTaskType.Subview },
{ id: 10002, parentId: 10001, title: '城市道路修理進度', start: '2024-03-03', end: '2024-03-08', progress: 70, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar5.jpeg' },
{ id: 10003, parentId: null, title: 'B大工程', start: '', end: '', progress: 0, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar2.jpeg', type: VxeGanttTaskType.Subview },
{ id: 10004, parentId: 10003, title: '超級大工程', start: '2024-03-05', end: '2024-03-08', progress: 50, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar1.jpeg' },
{ id: 10005, parentId: 10003, title: '地球淨化項目', start: '', end: '', progress: 0, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar8.jpeg', type: VxeGanttTaskType.Subview },
{ id: 10006, parentId: 10003, title: '一個小目標項目', start: '2024-03-13', end: '2024-03-21', progress: 60, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar9.jpeg' },
{ id: 10007, parentId: 10005, title: '某某計劃', start: '2024-03-22', end: '2024-03-24', progress: 70, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar3.jpeg' },
{ id: 10008, parentId: null, title: '某某科技項目', start: '', end: '', progress: 0, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar6.jpeg', type: VxeGanttTaskType.Subview },
{ id: 10009, parentId: 10008, title: '地鐵建設工程', start: '2024-03-19', end: '2024-03-20', progress: 50, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar7.jpeg' },
{ id: 10010, parentId: 10008, title: '公寓裝修計劃2', start: '', end: '', progress: 0, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar5.jpeg', type: VxeGanttTaskType.Subview },
{ id: 10011, parentId: 10008, title: '兩個小目標工程', start: '', end: '', progress: 0, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar4.jpeg', type: VxeGanttTaskType.Subview },
{ id: 10012, parentId: null, title: '藍天計劃', start: '2024-03-29', end: '2024-04-01', progress: 60, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar7.jpeg' },
{ id: 10013, parentId: 10010, title: 'C大項目', start: '2024-03-08', end: '2024-03-11', progress: 70, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar2.jpeg' },
{ id: 10014, parentId: 10010, title: 'H計劃', start: '2024-03-12', end: '2024-03-16', progress: 100, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar1.jpeg' },
{ id: 10015, parentId: 10011, title: '鐵路修建計劃', start: '2024-03-18', end: '2024-03-19', progress: 80, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar2.jpeg' },
{ id: 10016, parentId: 10011, title: 'D項目', start: '2024-03-20', end: '2024-03-22', progress: 10, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar6.jpeg' },
{ id: 10017, parentId: 10011, title: '海外改造工程', start: '2024-03-24', end: '2024-03-29', progress: 60, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar7.jpeg' },
{ id: 10018, parentId: null, title: 'Z計劃', start: '', end: '', progress: 0, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar8.jpeg', type: VxeGanttTaskType.Subview },
{ id: 10019, parentId: 10018, title: 'F工程', start: '2024-03-20', end: '2024-03-22', progress: 80, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar8.jpeg' },
{ id: 10020, parentId: 10018, title: '投資大項目', start: '2024-03-23', end: '2024-03-25', progress: 60, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar7.jpeg' },
{ id: 10021, parentId: 10018, title: 'X計劃', start: '2024-03-26', end: '2024-03-29', progress: 60, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar9.jpeg' },
{ id: 10022, parentId: null, title: '上天計劃', start: '2024-03-19', end: '2024-03-26', progress: 70, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar4.jpeg' },
{ id: 10023, parentId: null, title: 'G項目', start: '', end: '', progress: 0, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar3.jpeg', type: VxeGanttTaskType.Subview },
{ id: 10024, parentId: 10023, title: '下地計劃', start: '2024-03-09', end: '2024-03-16', progress: 50, imgUrl: 'https://vxeui.com/resource/avatarImg/avatar5.jpeg' }
]
})
</script>
<style lang="scss" scoped>
.custom-task-bar {
display: flex;
flex-direction: row;
padding: 2px 6px;
width: 100%;
font-size: 12px;
}
.custom-task-txt {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
</style>
https://gitee.com/x-extends/vxe-gantt