显示信息

This commit is contained in:
lq
2025-09-25 14:56:24 +08:00
parent 00a99b6512
commit a6de1defad
2 changed files with 70 additions and 2 deletions

View File

@ -513,7 +513,15 @@ const handleTaskAction = async (action: string, task: any, ...args: any[]) => {
};
const selectedDate = task.execution_time;
const date = new Date(selectedDate);
// 显示抽屉
drawerPopupRef.value.showDrawer(accountInfo, date);
// 等待抽屉打开后再填充数据
nextTick(() => {
// 直接使用传入的task数据填充表单
drawerPopupRef.value.fillTaskData(task);
});
break;
}
};