From 77559bb4a9a1d59f745251bdb98fb651bd928476 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 26 Sep 2024 20:31:04 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=84=EC=B2=B4=20=ED=81=AC=EB=A6=AC?= =?UTF-8?q?=EC=97=90=EC=9D=B4=ED=84=B0=20=EC=88=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Creator/CreatorList.vue | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/views/Creator/CreatorList.vue b/src/views/Creator/CreatorList.vue index 18c8225..da4ab9a 100644 --- a/src/views/Creator/CreatorList.vue +++ b/src/views/Creator/CreatorList.vue @@ -46,6 +46,11 @@ + + + 전체 {{ total_creator_count }} 명 + + @@ -159,6 +164,7 @@ export default { is_loading: false, page: 1, total_page: 0, + total_creator_count: 0, search_word: '', accounts: [], account: {}, @@ -234,6 +240,7 @@ export default { const data = res.data.data const total_page = Math.ceil(data.totalCount / 20) + this.total_creator_count = data.totalCount; this.accounts = data.items if (total_page <= 0) @@ -269,6 +276,12 @@ export default { } -