From f4ae6888acd7588e76c1a8e9bcb4a76328d28e01 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 29 May 2024 15:45:11 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EA=B0=80?= =?UTF-8?q?=EA=B2=A9=20=EC=88=98=EC=A0=95=EA=B8=B0=EB=8A=A5=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Content/ContentList.vue | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/views/Content/ContentList.vue b/src/views/Content/ContentList.vue index 1b990f0..140dd15 100644 --- a/src/views/Content/ContentList.vue +++ b/src/views/Content/ContentList.vue @@ -227,6 +227,20 @@ + + + + 가격 + + + + + + @@ -699,6 +713,7 @@ export default { this.audio_content.id = item.audioContentId this.audio_content.title = item.title this.audio_content.detail = item.detail + this.audio_content.price = item.price this.audio_content.is_adult = item.isAdult this.audio_content.is_comment_available = item.isCommentAvailable this.audio_content.cover_image_url = item.coverImageUrl @@ -963,6 +978,10 @@ export default { request.isCommentAvailable = this.audio_content.is_comment_available } + if (this.audio_content.price !== this.selected_audio_content.price) { + request.price = this.audio_content.price + } + if (this.audio_content.cover_image !== null) { formData.append("coverImage", this.audio_content.cover_image) }