Compare commits
No commits in common. "efa16433593af02c73a31a581d58ae3116e72815" and "3b294ba0205530786f2e162db35421b7045b3afb" have entirely different histories.
efa1643359
...
3b294ba020
|
@ -560,29 +560,6 @@
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-text v-show="audio_content.price >= 50">
|
|
||||||
<v-row align="center">
|
|
||||||
<v-col cols="4">
|
|
||||||
콘텐츠 내용 전체 오픈 설정
|
|
||||||
</v-col>
|
|
||||||
<v-col cols="8">
|
|
||||||
<v-radio-group
|
|
||||||
v-model="audio_content.is_full_detail_visible"
|
|
||||||
row
|
|
||||||
>
|
|
||||||
<v-radio
|
|
||||||
:value="false"
|
|
||||||
label="구매한 사람만"
|
|
||||||
/>
|
|
||||||
<v-radio
|
|
||||||
:value="true"
|
|
||||||
label="전체"
|
|
||||||
/>
|
|
||||||
<v-spacer />
|
|
||||||
</v-radio-group>
|
|
||||||
</v-col>
|
|
||||||
</v-row>
|
|
||||||
</v-card-text>
|
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-row>
|
<v-row>
|
||||||
<v-col cols="4">
|
<v-col cols="4">
|
||||||
|
@ -702,7 +679,6 @@ export default {
|
||||||
is_adult: false,
|
is_adult: false,
|
||||||
is_generate_preview: false,
|
is_generate_preview: false,
|
||||||
is_comment_available: true,
|
is_comment_available: true,
|
||||||
is_full_detail_visible: true,
|
|
||||||
purchase_option: 'BOTH',
|
purchase_option: 'BOTH',
|
||||||
},
|
},
|
||||||
audio_contents: [],
|
audio_contents: [],
|
||||||
|
@ -759,7 +735,6 @@ export default {
|
||||||
price: 0,
|
price: 0,
|
||||||
is_adult: false,
|
is_adult: false,
|
||||||
is_comment_available: true,
|
is_comment_available: true,
|
||||||
is_full_detail_visible: true,
|
|
||||||
purchase_option: 'BOTH',
|
purchase_option: 'BOTH',
|
||||||
}
|
}
|
||||||
this.reservation_time = ''
|
this.reservation_time = ''
|
||||||
|
@ -869,8 +844,7 @@ 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,
|
||||||
isCommentAvailable: this.audio_content.is_comment_available,
|
isCommentAvailable: this.audio_content.is_comment_available
|
||||||
isFullDetailVisible: this.audio_content.is_full_detail_visible
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.audio_content.limited > 0) {
|
if (this.audio_content.limited > 0) {
|
||||||
|
|
Loading…
Reference in New Issue