From 68c096b43f62ec06bfd0370ed1e64347b8001042 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Tue, 4 Feb 2025 16:15:47 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=EB=A6=AC=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=88=98=EC=A0=95=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/board/BoardList.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/board/BoardList.vue b/src/views/board/BoardList.vue index 1b528c5..f5428dc 100644 --- a/src/views/board/BoardList.vue +++ b/src/views/board/BoardList.vue @@ -60,6 +60,7 @@ 공지 📌 {{ notice.title }} + N @@ -76,6 +77,7 @@ {{ post.id }} {{ post.title }} + N @@ -190,7 +192,8 @@ const fetchGeneralPosts = async (page = 1) => { author: post.author || '익명', date: formatDate(post.date), // 날짜 변환 적용 views: post.cnt || 0, - hasAttachment: post.hasAttachment || false + hasAttachment: post.hasAttachment || false, + img: post.firstImageUrl || null })); pagination.value = { @@ -228,7 +231,8 @@ const fetchNoticePosts = async () => { author: post.author || '관리자', date: formatDate(post.date), // 날짜 변환 적용 views: post.cnt || 0, - hasAttachment: post.hasAttachment || false + hasAttachment: post.hasAttachment || false, + img: post.firstImageUrl || null })); } } catch (error) {