v1.4.2-patch.2 - bugfix: tasklist列宽度设置问题
This commit is contained in:
+2
-2
@@ -48,13 +48,13 @@ const toolbarConfig = {
|
||||
// TaskList列配置
|
||||
const availableColumns = ref<TaskListColumnConfig[]>([
|
||||
{ key: 'predecessor', label: '前置任务', visible: true },
|
||||
{ key: 'assignee', label: '负责人', visible: true },
|
||||
{ key: 'assignee', label: '负责人', visible: true, width: 250 },
|
||||
{ key: 'startDate', label: '开始日期', visible: true },
|
||||
{ key: 'endDate', label: '结束日期', visible: true },
|
||||
{ key: 'estimatedHours', label: '预估工时', visible: true },
|
||||
{ key: 'actualHours', label: '实际工时', visible: true },
|
||||
{ key: 'progress', label: '进度', visible: true },
|
||||
{ key: 'custom', label: '自定义列', visible: true, width: 120 }, // 添加默认宽度120px
|
||||
{ key: 'custom', label: '自定义列', visible: true, width: '30%' }, // 添加默认宽度120px
|
||||
])
|
||||
|
||||
// TaskList宽度配置
|
||||
|
||||
@@ -276,5 +276,15 @@
|
||||
"Defect fix: Fixed the issue of infinite loop calls when updating child tasks after updating the parent task",
|
||||
"<span style=\"font-weight: bold; color: #f00;\">Special thanks to Ky1in666@github for their valuable use and feedback</span>"
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "1.4.2-patch2",
|
||||
"date": "2025-11-11",
|
||||
"notes": [
|
||||
"缺陷修复:TaskList配置列宽无效的问题修复",
|
||||
"<span style=\"font-weight: bold; color: #f00;\">特别感谢 @SHENGLONG749的使用及反馈的宝贵意见</span>",
|
||||
"Defect fix: Fixed the issue of invalid column width configuration in TaskList",
|
||||
"<span style=\"font-weight: bold; color: #f00;\">Special thanks to @SHENGLONG749 for their valuable use and feedback</span>"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user