Compare commits
No commits in common. "625c8a121f4347117b3fa8e54bad339c9eff717f" and "efa16433593af02c73a31a581d58ae3116e72815" have entirely different histories.
625c8a121f
...
efa1643359
|
@ -14,7 +14,7 @@
|
||||||
<v-col>
|
<v-col>
|
||||||
<v-btn
|
<v-btn
|
||||||
block
|
block
|
||||||
color="#3bb9f1"
|
color="#9970ff"
|
||||||
dark
|
dark
|
||||||
depressed
|
depressed
|
||||||
@click="showWriteDialog"
|
@click="showWriteDialog"
|
||||||
|
@ -273,22 +273,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_point_available"
|
|
||||||
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
|
||||||
|
@ -631,22 +615,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_point_available"
|
|
||||||
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
|
||||||
|
@ -732,7 +700,6 @@ export default {
|
||||||
audio_content: {
|
audio_content: {
|
||||||
price: 0,
|
price: 0,
|
||||||
is_adult: false,
|
is_adult: false,
|
||||||
is_point_available: false,
|
|
||||||
is_generate_preview: false,
|
is_generate_preview: false,
|
||||||
is_comment_available: true,
|
is_comment_available: true,
|
||||||
is_full_detail_visible: true,
|
is_full_detail_visible: true,
|
||||||
|
@ -781,7 +748,6 @@ export default {
|
||||||
this.audio_content.detail = item.detail
|
this.audio_content.detail = item.detail
|
||||||
this.audio_content.price = item.price
|
this.audio_content.price = item.price
|
||||||
this.audio_content.is_adult = item.isAdult
|
this.audio_content.is_adult = item.isAdult
|
||||||
this.audio_content.is_point_available = item.isPointAvailable
|
|
||||||
this.audio_content.is_comment_available = item.isCommentAvailable
|
this.audio_content.is_comment_available = item.isCommentAvailable
|
||||||
this.audio_content.cover_image_url = item.coverImageUrl
|
this.audio_content.cover_image_url = item.coverImageUrl
|
||||||
this.show_modify_dialog = true
|
this.show_modify_dialog = true
|
||||||
|
@ -792,7 +758,6 @@ export default {
|
||||||
this.audio_content = {
|
this.audio_content = {
|
||||||
price: 0,
|
price: 0,
|
||||||
is_adult: false,
|
is_adult: false,
|
||||||
is_point_available: false,
|
|
||||||
is_comment_available: true,
|
is_comment_available: true,
|
||||||
is_full_detail_visible: true,
|
is_full_detail_visible: true,
|
||||||
purchase_option: 'BOTH',
|
purchase_option: 'BOTH',
|
||||||
|
@ -904,7 +869,6 @@ export default {
|
||||||
isAdult: this.audio_content.is_adult,
|
isAdult: this.audio_content.is_adult,
|
||||||
isGeneratePreview: this.audio_content.price > 0 ? this.audio_content.is_generate_preview : false,
|
isGeneratePreview: this.audio_content.price > 0 ? this.audio_content.is_generate_preview : false,
|
||||||
purchaseOption: this.audio_content.purchase_option,
|
purchaseOption: this.audio_content.purchase_option,
|
||||||
isPointAvailable: this.audio_content.is_point_available,
|
|
||||||
isCommentAvailable: this.audio_content.is_comment_available,
|
isCommentAvailable: this.audio_content.is_comment_available,
|
||||||
isFullDetailVisible: this.audio_content.is_full_detail_visible
|
isFullDetailVisible: this.audio_content.is_full_detail_visible
|
||||||
}
|
}
|
||||||
|
@ -1046,10 +1010,6 @@ export default {
|
||||||
request.isAdult = this.audio_content.is_adult
|
request.isAdult = this.audio_content.is_adult
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.selected_audio_content.isPointAvailable !== this.audio_content.is_point_available) {
|
|
||||||
request.isPointAvailable = this.audio_content.is_point_available
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.selected_audio_content.isCommentAvailable !== this.audio_content.is_comment_available) {
|
if (this.selected_audio_content.isCommentAvailable !== this.audio_content.is_comment_available) {
|
||||||
request.isCommentAvailable = this.audio_content.is_comment_available
|
request.isCommentAvailable = this.audio_content.is_comment_available
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue