Compare commits

..

No commits in common. "f06e2d41e0cc91716a8c8c9ec741cf40748c10a7" and "7505269db3ad7b44d3f8cef9471765315557994c" have entirely different histories.

1 changed files with 1 additions and 14 deletions

View File

@ -46,11 +46,6 @@
</v-text-field>
</v-col>
</v-row>
<v-row>
<v-col class="text-left total-creator">
전체 <span>{{ total_creator_count }}</span>
</v-col>
</v-row>
<v-row>
<v-col>
<v-simple-table class="elevation-10">
@ -164,7 +159,6 @@ export default {
is_loading: false,
page: 1,
total_page: 0,
total_creator_count: 0,
search_word: '',
accounts: [],
account: {},
@ -240,7 +234,6 @@ 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)
@ -276,12 +269,6 @@ export default {
}
</script>
<style>
.total-creator {
padding-bottom: 0;
}
<style scoped>
.total-creator > span {
color: #3bb9f1;
}
</style>