From 1c45a30f59851ae7c4d7ea2aca18950c46e9fdc3 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 12 Nov 2024 23:11:43 +0900 Subject: [PATCH] =?UTF-8?q?=EC=86=8C=EC=9E=A5=EB=A7=8C=20=EA=B8=B0?= =?UTF-8?q?=EB=8A=A5=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Content/ContentList.vue | 38 +++++++++++++++++++------------ 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/src/views/Content/ContentList.vue b/src/views/Content/ContentList.vue index 981c9e5..dfa10f9 100644 --- a/src/views/Content/ContentList.vue +++ b/src/views/Content/ContentList.vue @@ -534,18 +534,29 @@ - + - 대여만 가능 + 소장 설정 - - + + + + + + @@ -668,13 +679,11 @@ export default { is_adult: false, is_generate_preview: false, is_comment_available: true, + purchase_option: 'BOTH', }, audio_contents: [], themeList: [], selected_audio_content: {}, - utm_source: '', - utm_medium: '', - utm_campaign: '', } }, @@ -726,6 +735,7 @@ export default { price: 0, is_adult: false, is_comment_available: true, + purchase_option: 'BOTH', } this.reservation_time = '' this.reservation_time = '' @@ -833,12 +843,12 @@ export default { themeId: this.audio_content.theme_id, isAdult: this.audio_content.is_adult, isGeneratePreview: this.audio_content.price > 0 ? this.audio_content.is_generate_preview : false, - isOnlyRental: this.audio_content.is_only_rental, + purchaseOption: this.audio_content.purchase_option, isCommentAvailable: this.audio_content.is_comment_available } if (this.audio_content.limited > 0) { - request.isOnlyRental = false + request.purchaseOption = 'BUY_ONLY' } if (this.audio_content.price > 0 && this.is_limited_edition === true) { -- 2.40.1