Compare commits
No commits in common. "0449bac8d5f782bad1efa0e85f4b6151be678ec3" and "d412c15c9d70fa321772875642eeaa6b1e13684e" have entirely different histories.
0449bac8d5
...
d412c15c9d
|
@ -9,11 +9,6 @@
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<v-container>
|
<v-container>
|
||||||
<v-row>
|
|
||||||
<v-col class="text-left total-count">
|
|
||||||
전체 <span>{{ total_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">
|
||||||
|
@ -129,7 +124,6 @@ export default {
|
||||||
is_loading: false,
|
is_loading: false,
|
||||||
page: 1,
|
page: 1,
|
||||||
total_page: 0,
|
total_page: 0,
|
||||||
total_count: 0,
|
|
||||||
series_list: []
|
series_list: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -156,7 +150,6 @@ export default {
|
||||||
const data = res.data.data
|
const data = res.data.data
|
||||||
const total_page = Math.ceil(data.totalCount / 10)
|
const total_page = Math.ceil(data.totalCount / 10)
|
||||||
this.series_list = data.items
|
this.series_list = data.items
|
||||||
this.total_count = data.totalCount
|
|
||||||
|
|
||||||
if (total_page <= 0)
|
if (total_page <= 0)
|
||||||
this.total_page = 1
|
this.total_page = 1
|
||||||
|
@ -180,12 +173,6 @@ export default {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style scoped>
|
||||||
.total-count {
|
|
||||||
padding-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-count > span {
|
|
||||||
color: #3bb9f1;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue