콘텐츠 등록 - 대여만 가능한 콘텐츠 등록할 수 있도록 체크박스 추가 #4
|
@ -408,6 +408,22 @@
|
|||
</v-col>
|
||||
</v-row>
|
||||
</v-card-text>
|
||||
<v-card-text v-show="audio_content.price > 0">
|
||||
<v-row>
|
||||
<v-col cols="4">
|
||||
대여만 가능
|
||||
</v-col>
|
||||
<v-col
|
||||
cols="8"
|
||||
align="left"
|
||||
>
|
||||
<input
|
||||
v-model="audio_content.is_only_rental"
|
||||
type="checkbox"
|
||||
>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-card-text>
|
||||
<v-card-text>
|
||||
<v-row>
|
||||
<v-col cols="4">
|
||||
|
@ -680,6 +696,7 @@ export default {
|
|||
price: this.audio_content.price,
|
||||
themeId: this.audio_content.theme_id,
|
||||
isAdult: this.audio_content.is_adult,
|
||||
isOnlyRental: this.audio_content.is_only_rental,
|
||||
isCommentAvailable: this.audio_content.is_comment_available
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue