From e27f11436a932d232815ee7437abbaeab679da2a Mon Sep 17 00:00:00 2001 From: admin <417727563@qq.com> Date: Wed, 26 Feb 2025 09:35:01 +0800 Subject: [PATCH] 1 --- src/views/home/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/home/index.vue b/src/views/home/index.vue index dda4381..9810f2c 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -130,9 +130,9 @@ const toNewsDetail = (id: number) => { const newList = ref([]) const getNewsList = async () => { const res: any = await getColumnListApi() - console.log(res) + // console.log(res) newList.value = res.result.slice(0, 4) - console.log(newList.value, 'newList.value') + // console.log(newList.value, 'newList.value') newInfo.value = newList.value[0] getNewInfo(newList.value[0].id) } @@ -145,7 +145,7 @@ const childrenNewList = ref([]) const getNewInfo = async (id: any) => { const res: any = await queryEssayListApi(id) childrenNewList.value = res.result.records - console.log(childrenNewList, 'childrenNewList') + // console.log(childrenNewList, 'childrenNewList') } // 切换tab