콘텐츠 업데이트 - 커버이미지 추가 및 multipart 방식으로 수정
This commit is contained in:
parent
6978618e72
commit
647a0cfd66
|
@ -7,7 +7,7 @@ async function getAudioContentList(page) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function searchAudioContent(searchWord, page){
|
async function searchAudioContent(searchWord, page) {
|
||||||
return Vue.axios.get(
|
return Vue.axios.get(
|
||||||
"/creator-admin/audio-content/search?search_word=" + searchWord +
|
"/creator-admin/audio-content/search?search_word=" + searchWord +
|
||||||
"&page=" + (page - 1) +
|
"&page=" + (page - 1) +
|
||||||
|
@ -15,11 +15,24 @@ async function searchAudioContent(searchWord, page){
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function modifyAudioContent(request) {
|
async function modifyAudioContent(formData) {
|
||||||
return Vue.axios.put("/creator-admin/audio-content", request)
|
return Vue.axios.put("/creator-admin/audio-content", formData, {
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "multipart/form-data",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
async function createAudioContent(formData) {
|
||||||
|
return Vue.axios.post('/audio-content', formData, {
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "multipart/form-data",
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
createAudioContent,
|
||||||
getAudioContentList,
|
getAudioContentList,
|
||||||
searchAudioContent,
|
searchAudioContent,
|
||||||
modifyAudioContent
|
modifyAudioContent
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
<template>
|
<template>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="text-center">
|
|
||||||
콘텐츠 번호
|
|
||||||
</th>
|
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
썸네일
|
썸네일
|
||||||
</th>
|
</th>
|
||||||
|
@ -61,7 +58,6 @@
|
||||||
v-for="item in audio_contents"
|
v-for="item in audio_contents"
|
||||||
:key="item.audioContentId"
|
:key="item.audioContentId"
|
||||||
>
|
>
|
||||||
<td>{{ item.audioContentId }}</td>
|
|
||||||
<td align="center">
|
<td align="center">
|
||||||
<v-img
|
<v-img
|
||||||
max-width="100"
|
max-width="100"
|
||||||
|
@ -151,6 +147,22 @@
|
||||||
<v-card-title>
|
<v-card-title>
|
||||||
콘텐츠 수정
|
콘텐츠 수정
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
|
<div class="image-select">
|
||||||
|
<label for="image">
|
||||||
|
배너 이미지 등록
|
||||||
|
</label>
|
||||||
|
<v-file-input
|
||||||
|
id="image"
|
||||||
|
v-model="audio_content.cover_image"
|
||||||
|
@change="imageAdd"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<img
|
||||||
|
v-if="audio_content.cover_image_url"
|
||||||
|
:src="audio_content.cover_image_url"
|
||||||
|
alt=""
|
||||||
|
class="image-preview"
|
||||||
|
>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-row align="center">
|
<v-row align="center">
|
||||||
<v-col cols="4">
|
<v-col cols="4">
|
||||||
|
@ -211,22 +223,6 @@
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-text>
|
|
||||||
<v-row>
|
|
||||||
<v-col cols="4">
|
|
||||||
기본 커버이미지로 변경
|
|
||||||
</v-col>
|
|
||||||
<v-col
|
|
||||||
cols="8"
|
|
||||||
align="left"
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
v-model="audio_content.is_default_cover_image"
|
|
||||||
type="checkbox"
|
|
||||||
>
|
|
||||||
</v-col>
|
|
||||||
</v-row>
|
|
||||||
</v-card-text>
|
|
||||||
<v-card-actions v-show="!is_loading">
|
<v-card-actions v-show="!is_loading">
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
<v-btn
|
<v-btn
|
||||||
|
@ -292,6 +288,7 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
is_loading: false,
|
is_loading: false,
|
||||||
|
show_create_dialog: false,
|
||||||
show_modify_dialog: false,
|
show_modify_dialog: false,
|
||||||
show_delete_confirm_dialog: false,
|
show_delete_confirm_dialog: false,
|
||||||
page: 1,
|
page: 1,
|
||||||
|
@ -339,8 +336,7 @@ export default {
|
||||||
this.audio_content.curation_id = item.curationId
|
this.audio_content.curation_id = item.curationId
|
||||||
this.audio_content.is_adult = item.isAdult
|
this.audio_content.is_adult = item.isAdult
|
||||||
this.audio_content.is_comment_available = item.isCommentAvailable
|
this.audio_content.is_comment_available = item.isCommentAvailable
|
||||||
this.audio_content.is_default_cover_image = false
|
this.audio_content.cover_image_url = item.coverImageUrl
|
||||||
|
|
||||||
console.log(this.audio_content)
|
console.log(this.audio_content)
|
||||||
|
|
||||||
this.show_modify_dialog = true
|
this.show_modify_dialog = true
|
||||||
|
@ -353,6 +349,16 @@ export default {
|
||||||
this.show_delete_confirm_dialog = false
|
this.show_delete_confirm_dialog = false
|
||||||
},
|
},
|
||||||
|
|
||||||
|
imageAdd(payload) {
|
||||||
|
const file = payload;
|
||||||
|
if (file) {
|
||||||
|
this.audio_content.cover_image_url = URL.createObjectURL(file)
|
||||||
|
URL.revokeObjectURL(file)
|
||||||
|
} else {
|
||||||
|
this.audio_content.cover_image_url = null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
async modify() {
|
async modify() {
|
||||||
if (
|
if (
|
||||||
this.audio_content.title === null ||
|
this.audio_content.title === null ||
|
||||||
|
@ -377,10 +383,8 @@ export default {
|
||||||
this.isLoading = true
|
this.isLoading = true
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const request = {
|
const formData = new FormData()
|
||||||
id: this.audio_content.id,
|
const request = {id: this.audio_content.id}
|
||||||
isDefaultCoverImage: this.audio_content.is_default_cover_image
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
this.selected_audio_content.title !== this.audio_content.title &&
|
this.selected_audio_content.title !== this.audio_content.title &&
|
||||||
|
@ -408,8 +412,13 @@ export default {
|
||||||
request.isCommentAvailable = this.audio_content.is_comment_available
|
request.isCommentAvailable = this.audio_content.is_comment_available
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(request)
|
if (this.audio_content.cover_image !== null) {
|
||||||
const res = await api.modifyAudioContent(request)
|
formData.append("coverImage", this.audio_content.cover_image)
|
||||||
|
}
|
||||||
|
|
||||||
|
formData.append("request", JSON.stringify(request))
|
||||||
|
|
||||||
|
const res = await api.modifyAudioContent(formData)
|
||||||
if (res.status === 200 && res.data.success === true) {
|
if (res.status === 200 && res.data.success === true) {
|
||||||
this.cancel()
|
this.cancel()
|
||||||
this.notifySuccess('수정되었습니다.')
|
this.notifySuccess('수정되었습니다.')
|
||||||
|
|
Loading…
Reference in New Issue