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 {
|