Compare commits
No commits in common. "97a58266bb3b1e1c49de545d32d8bbd577893511" and "8fc0cfa345cd2f179aa327db773852702943b34c" have entirely different histories.
97a58266bb
...
8fc0cfa345
|
@ -9,6 +9,13 @@
|
|||
<br>
|
||||
|
||||
<v-container>
|
||||
<v-row>
|
||||
<v-col cols="2">
|
||||
총 콘텐츠 개수 : {{ total_count }} 개
|
||||
</v-col>
|
||||
|
||||
<v-spacer />
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col>
|
||||
<v-data-table
|
||||
|
@ -75,6 +82,7 @@ export default {
|
|||
page: 1,
|
||||
page_size: 20,
|
||||
total_page: 0,
|
||||
total_count: 0,
|
||||
items: [],
|
||||
headers: [
|
||||
{
|
||||
|
@ -96,12 +104,6 @@ export default {
|
|||
align: 'center',
|
||||
width: "300px"
|
||||
},
|
||||
{
|
||||
text: '구분',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'orderType',
|
||||
},
|
||||
{
|
||||
text: '판매금액(캔)',
|
||||
align: 'center',
|
||||
|
@ -109,7 +111,7 @@ export default {
|
|||
value: 'orderPrice',
|
||||
},
|
||||
{
|
||||
text: '누적 판매수',
|
||||
text: '판매수',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'numberOfPeople',
|
||||
|
@ -185,6 +187,7 @@ export default {
|
|||
|
||||
const totalPage = Math.ceil(data.totalCount / this.page_size)
|
||||
this.items = data.items
|
||||
this.total_count = data.totalCount
|
||||
|
||||
if (totalPage <= 0)
|
||||
this.total_page = 1
|
||||
|
|
Loading…
Reference in New Issue