From 704b8803f5eaea373e5bf8cb9d6af529a6f8ecdf Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 15 Oct 2024 13:16:06 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=84=EC=B2=B4=20=EA=B0=9C=EC=88=98=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Content/ContentSeriesList.vue | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/views/Content/ContentSeriesList.vue b/src/views/Content/ContentSeriesList.vue index c43f25e..41ef126 100644 --- a/src/views/Content/ContentSeriesList.vue +++ b/src/views/Content/ContentSeriesList.vue @@ -9,6 +9,11 @@
+ + + 전체 {{ total_count }} 개 + + @@ -124,6 +129,7 @@ export default { is_loading: false, page: 1, total_page: 0, + total_count: 0, series_list: [] } }, @@ -150,6 +156,7 @@ export default { const data = res.data.data const total_page = Math.ceil(data.totalCount / 10) this.series_list = data.items + this.total_count = data.totalCount if (total_page <= 0) this.total_page = 1 @@ -173,6 +180,12 @@ export default { } -