Compare commits

..

No commits in common. "b7c8bed7270da25b32045e6af11c2dde6cb494ec" and "f059dda7eb3a92d12df444f5d6971b7afa5ba2b5" have entirely different histories.

1 changed files with 2 additions and 18 deletions

View File

@ -43,6 +43,8 @@
조회
</v-btn>
</v-col>
<v-spacer />
</v-row>
<v-row>
@ -55,20 +57,6 @@
class="elevation-1"
hide-default-footer
>
<template slot="body.prepend">
<tr>
<td colspan="4">
합계
</td>
<td>{{ sumField('totalCan').toLocaleString() }} </td>
<td>{{ sumField('totalKrw').toLocaleString() }} </td>
<td>{{ sumField('paymentFee').toLocaleString() }} </td>
<td>{{ sumField('settlementAmount').toLocaleString() }} </td>
<td>{{ sumField('tax').toLocaleString() }} </td>
<td>{{ sumField('depositAmount').toLocaleString() }} </td>
</tr>
</template>
<template v-slot:item.title="{ item }">
{{ item.title }}...
</template>
@ -223,10 +211,6 @@ export default {
this.$dialog.notify.error(message)
},
sumField(key) {
return this.items.reduce((a, b) => a + (b[key] || 0), 0)
},
async next() {
await this.getCalculateCommunityPost()
},