v1.4.6 - bugfix

This commit is contained in:
LINING-PC\lining
2025-12-09 14:18:04 +08:00
parent 39367a7810
commit 3106135677
8 changed files with 23 additions and 34 deletions
+2 -1
View File
@@ -644,7 +644,8 @@ function confirmTimer(desc: string) {
}
// 处理负责人变更
const handleAssigneeChanged = (value: string) => {
const handleAssigneeChanged = (event: Event) => {
const value = (event.target as HTMLSelectElement).value
// 通过value过滤props.assigneeOptions获取对应的label
const selected = props.assigneeOptions?.find(option => option.value === value)
if (selected) {
-2
View File
@@ -309,8 +309,6 @@ const handleTaskRowDragOver = (event: CustomEvent) => {
const { taskId, event: mouseEvent } = event.detail
if (taskId === props.task.id) {
// eslint-disable-next-line no-console
console.log('[TaskRow] 接收到drag-over事件,任务:', props.task.name)
props.dragOver(props.task, taskRowRef.value, mouseEvent)
}
}