chore: 去除log打印

This commit is contained in:
dap 2024-12-20 11:14:18 +08:00
parent 58c361c908
commit 94721d7e66
2 changed files with 0 additions and 2 deletions

View File

@ -22,7 +22,6 @@ const emit = defineEmits<{ click: [string] }>();
* TODO: 这里要优化 事件没有用到
*/
function handleClick() {
console.log('click');
const idKey = props.rowKey as keyof TaskInfo;
emit('click', props.info[idKey]);
}

View File

@ -130,7 +130,6 @@ async function handleLoadInfo(task: TaskInfo | undefined) {
currentFlowInfo.value = resp;
const taskResp = await getTaskByTaskId(props.task!.id);
console.log('taskResp', taskResp);
currentTask.value = taskResp;
} catch (error) {
console.error(error);