diff --git a/src/views/Content/ContentList.vue b/src/views/Content/ContentList.vue index 11a26a9..1e621f8 100644 --- a/src/views/Content/ContentList.vue +++ b/src/views/Content/ContentList.vue @@ -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 }