From a6bcea3076512560eb759f76e8982e47b4fc3a22 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 27 Jan 2025 13:53:11 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20-=20=ED=81=90=EB=A0=88=EC=9D=B4=EC=85=98?= =?UTF-8?q?=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Content/ContentList.vue | 47 ------------------------------- 1 file changed, 47 deletions(-) diff --git a/src/views/Content/ContentList.vue b/src/views/Content/ContentList.vue index e8ad28e..9032984 100644 --- a/src/views/Content/ContentList.vue +++ b/src/views/Content/ContentList.vue @@ -63,9 +63,6 @@ 내용 - - 큐레이션 - 크리에이터 @@ -134,7 +131,6 @@ :lines="3" /> - {{ item.curationTitle || '없음' }} {{ item.creatorNickname }} {{ item.theme }} @@ -307,22 +303,6 @@ - - - - 큐레이션 - - - - - - @@ -415,7 +395,6 @@ export default { search_word: '', audio_content: {}, audio_contents: [], - curations: [], themeList: [], selected_audio_content: {}, utm_source: '', @@ -426,7 +405,6 @@ export default { async created() { await this.getAudioContentThemeList(); - await this.getCurations() await this.getAudioContent() }, @@ -455,7 +433,6 @@ export default { this.audio_content.id = item.audioContentId this.audio_content.title = item.title this.audio_content.detail = item.detail - this.audio_content.curation_id = item.curationId this.audio_content.theme_id = item.themeId this.audio_content.is_adult = item.isAdult this.audio_content.is_comment_available = item.isCommentAvailable @@ -513,10 +490,6 @@ export default { request.detail = this.audio_content.detail } - if (this.selected_audio_content.curationId !== this.audio_content.curation_id) { - request.curationId = this.audio_content.curation_id - } - if (this.selected_audio_content.themeId !== this.audio_content.theme_id) { request.themeId = this.audio_content.theme_id } @@ -598,26 +571,6 @@ export default { } }, - async getCurations() { - this.is_loading = true - try { - const res = await api.getCurations() - if (res.status === 200 && res.data.success === true) { - this.curations = res.data.data.map((curation) => { - return {title: curation.title, value: curation.id} - }) - - this.curations.unshift({title: '없음', value: 0}) - } else { - this.notifyError(res.data.message || '알 수 없는 오류가 발생했습니다. 다시 시도해 주세요.') - } - } catch (e) { - this.notifyError('알 수 없는 오류가 발생했습니다. 다시 시도해 주세요.') - } finally { - this.is_loading = false - } - }, - async getAudioContent() { this.is_loading = true try {