Skip to content
Snippets Groups Projects
Commit 0a3af7d7 authored by JunGu Kang's avatar JunGu Kang
Browse files

#38 Add Price Field to Voucher Views

Voucher Create View
Voucher Detail View
Voucher List View
parent b74f3f0d
No related branches found
No related tags found
2 merge requests!37Deploy,!34#38 Add Price Field to Voucher Views
Pipeline #4364 passed
...@@ -18,6 +18,10 @@ ...@@ -18,6 +18,10 @@
label="이용횟수" label="이용횟수"
v-model="voucher.quantity" v-model="voucher.quantity"
></v-text-field> ></v-text-field>
<v-text-field
label="가격"
v-model="voucher.price"
></v-text-field>
</v-card-text> </v-card-text>
<v-card-actions> <v-card-actions>
<v-spacer></v-spacer> <v-spacer></v-spacer>
...@@ -66,6 +70,7 @@ export default { ...@@ -66,6 +70,7 @@ export default {
title: '', title: '',
}, },
quantity: '', quantity: '',
price: '',
}, },
}), }),
......
...@@ -25,6 +25,10 @@ ...@@ -25,6 +25,10 @@
label="이용횟수" label="이용횟수"
v-model="voucher.quantity" v-model="voucher.quantity"
></v-text-field> ></v-text-field>
<v-text-field
label="가격"
v-model="voucher.price"
></v-text-field>
<v-text-field <v-text-field
label="등록 시각" label="등록 시각"
readonly readonly
...@@ -85,6 +89,7 @@ export default { ...@@ -85,6 +89,7 @@ export default {
title: '', title: '',
}, },
quantity: '', quantity: '',
price: '',
createdAt: '', createdAt: '',
updatedAt: '', updatedAt: '',
}, },
......
...@@ -98,6 +98,10 @@ export default { ...@@ -98,6 +98,10 @@ export default {
text: '이용횟수', text: '이용횟수',
value: 'quantity', value: 'quantity',
}, },
{
text: '가격',
value: 'price',
},
{ {
text: '등록 시각', text: '등록 시각',
value: 'createdAt', value: 'createdAt',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment