chore: 去除log打印

master
dap 1 year ago
parent 58c361c908
commit 94721d7e66

@ -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]);
}

@ -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);

Loading…
Cancel
Save