From 55972074065c3ce64de77bb931e448f3378e824e Mon Sep 17 00:00:00 2001 From: XaoLi717 <144221124+XaoLi717@users.noreply.github.com> Date: Thu, 14 Nov 2024 16:37:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=9A=E8=AE=AE=E5=AE=A4=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Home/hysgl/hysinfo/index.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/views/Home/hysgl/hysinfo/index.vue b/src/views/Home/hysgl/hysinfo/index.vue index 989d779..79a9e1b 100644 --- a/src/views/Home/hysgl/hysinfo/index.vue +++ b/src/views/Home/hysgl/hysinfo/index.vue @@ -124,7 +124,6 @@ const getList = async () => { try { const hyglData = await HyglApi.getHyglPage(queryParamsHygl) listHygl.value = hyglData.list - console.log("hysglData",hyglData.list) for(let item of listHygl.value){ const formattedDate = formatDate2(item.createTime); // 如果 holidays2[formattedDate] 不存在或不是数组,初始化为数组 @@ -134,7 +133,6 @@ const getList = async () => { // 将 title 添加到数组中 holidays2[formattedDate].push({id:item.id,title:item.title}); } - console.log("holidays2",holidays2); } finally { } }