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 @@
label="이용횟수"
v-model="voucher.quantity"
></v-text-field>
<v-text-field
label="가격"
v-model="voucher.price"
></v-text-field>
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
......@@ -66,6 +70,7 @@ export default {
title: '',
},
quantity: '',
price: '',
},
}),
......
......@@ -25,6 +25,10 @@
label="이용횟수"
v-model="voucher.quantity"
></v-text-field>
<v-text-field
label="가격"
v-model="voucher.price"
></v-text-field>
<v-text-field
label="등록 시각"
readonly
......@@ -85,6 +89,7 @@ export default {
title: '',
},
quantity: '',
price: '',
createdAt: '',
updatedAt: '',
},
......
......@@ -98,6 +98,10 @@ export default {
text: '이용횟수',
value: 'quantity',
},
{
text: '가격',
value: 'price',
},
{
text: '등록 시각',
value: 'createdAt',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment