From 719a91d898f45844b94403269d1213d6c31ff389 Mon Sep 17 00:00:00 2001 From: JayChou Date: Thu, 13 Feb 2025 15:56:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=B0=E9=97=BB=E5=B8=83?= =?UTF-8?q?=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/home/index.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/views/home/index.vue b/src/views/home/index.vue index bcc55ad..4b94a2b 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -35,6 +35,13 @@ > {{ item.name }} +
+ 更多 +
@@ -124,7 +131,7 @@ const newList = ref([]) const getNewsList = async () => { const res: any = await getColumnListApi() console.log(res) - newList.value = res.result + newList.value = res.result.slice(0, 4) console.log(newList.value, 'newList.value') newInfo.value = newList.value[0] getNewInfo(newList.value[0].id)