当前位置: 首页 > news >正文

vue 甘特图 vxe-gantt 自定义任务条插槽模板的用法

vue 甘特图 vxe-gantt 自定义任务条插槽模板的用法

https://gantt.vxeui.com

image

过设置 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

http://www.jsqmd.com/news/333063/

相关文章:

  • 聊聊吉林省中控证不过包退费培训学校,哪家性价比高 - 工业品网
  • Python科研绘图基础——基础柱状图与误差棒的绘制
  • <span class=“js_title_inner“>ITIL 4实践选择的“三步走“策略:从茫然到清晰的企业级落地指南</span>
  • 丰城市英语雅思培训机构推荐,2026权威测评出国雅思辅导机构口碑榜单 - 老周说教育
  • 2026年沈阳靠谱中控证报考机构推荐,实力强专业有保障 - 工业品牌热点
  • 丰城市英语雅思培训机构推荐:2026权威测评出国雅思辅导机构口碑榜单 - 老周说教育
  • 深度测评10个降AI率平台 千笔助你轻松降AIGC
  • C语言算法宝库:从基础数据结构到经典算法实现
  • Java循环结构
  • 2026年黑龙江推荐的面点培训基地,黑天鹅学校品牌靠谱吗 - mypinpai
  • <span class=“js_title_inner“>4万亿美元!Alphabet 缔造历史:AI 战略大反攻,谷歌重回巅峰</span>
  • 单PWM加移相控制谐振型双有源桥变换器(DAB SRC)闭环仿真模型探索
  • 计算机毕设2026方向建议
  • 实用指南:云计算与大数据:引领数字经济的双引擎
  • 2026年国内热门的门窗定制排行榜,门窗/推拉窗/窗纱一体铝门窗/慕莎尼奥门窗/平移断桥提升窗/安全门窗,门窗批发哪家好 - 品牌推荐师
  • 一体化交付方案:2026年提供“软件+硬件”闭环的BI本地私有化部署厂商 - 品牌2025
  • 上海智推时代官方联系方式公布:合作咨询一键直达 - 速递信息
  • 聊聊新乡靠谱的钢结构施工制造厂,哪家更值得选 - 工业推荐榜
  • 上海智推时代怎么联系?官方沟通渠道全整理 - 速递信息
  • FlexCAD环境
  • 总结靠谱的蜡烛香精加工厂,芬畅凝科按需定制排名靠前 - myqiye
  • TypeScript_typeof的使用
  • 2026年国内优秀的自动化仓库制造厂口碑排行榜,智能仓储/全自动仓库/立体仓储/自动化仓库,自动化仓库制造企业怎么选 - 品牌推荐师
  • io分析第三章
  • 高温存储器在随钻测井系统中的应用对比:小容量实时控制 vs 大容量数据记录(下)
  • 2026 年2月 geo 公司优化行业领先者解析:核心能力与行业发展契合度 - 速递信息
  • ch58x/ch59x gpio模拟串口发送
  • 遗传算法优化的极限学习机模型(GA-ELM)Matlab实现
  • 全网最全10个降AIGC网站 千笔AI助你轻松降AI率
  • 私有化BI部署“攻坚者”:2026年在复杂内网环境中表现优异的厂商推荐 - 品牌2025