From 68c096b43f62ec06bfd0370ed1e64347b8001042 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Tue, 4 Feb 2025 16:15:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=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) { From 67bb83277aaa44fa83e733f66e369c53c39dedf0 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Tue, 4 Feb 2025 16:21:07 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EB=B2=88=ED=98=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/board/BoardList.vue | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/views/board/BoardList.vue b/src/views/board/BoardList.vue index f5428dc..28aacfc 100644 --- a/src/views/board/BoardList.vue +++ b/src/views/board/BoardList.vue @@ -51,7 +51,7 @@ - +