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