This commit is contained in:
weipengfei 2023-08-14 18:17:52 +08:00
parent 7b9afcb2fe
commit 31eebd4def

View File

@ -44,17 +44,17 @@ const props = defineProps({
},
});
const taskList = ref([]);
onUpdated(() => {
taskList.value = [];
props.list.forEach((item) => {
taskList.value.push({
const taskList = computed(() => {
let arr: any = [];
props.list.forEach((item: any) => {
arr.push({
id: item.id,
title: item.template_name,
startDate: new Date(item.start_time),
endDate: new Date(item.end_time),
});
});
return arr;
});
const emits = defineEmits(["clickItem", "initShowDate"]);