Compare commits

..

No commits in common. "0449bac8d5f782bad1efa0e85f4b6151be678ec3" and "d412c15c9d70fa321772875642eeaa6b1e13684e" have entirely different histories.

1 changed files with 1 additions and 14 deletions

View File

@ -9,11 +9,6 @@
<br>
<v-container>
<v-row>
<v-col class="text-left total-count">
전체 <span>{{ total_count }}</span>
</v-col>
</v-row>
<v-row>
<v-col>
<v-simple-table class="elevation-10">
@ -129,7 +124,6 @@ export default {
is_loading: false,
page: 1,
total_page: 0,
total_count: 0,
series_list: []
}
},
@ -156,7 +150,6 @@ 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
@ -180,12 +173,6 @@ export default {
}
</script>
<style>
.total-count {
padding-bottom: 0;
}
<style scoped>
.total-count > span {
color: #3bb9f1;
}
</style>