|
@@ -25,7 +25,7 @@ export default defineComponent({
|
|
|
groupId: query.groupId
|
|
|
},
|
|
|
shareStatus: false,
|
|
|
- shareUrl: '',
|
|
|
+ shareUrl: ''
|
|
|
}
|
|
|
},
|
|
|
async mounted() {
|
|
@@ -172,17 +172,24 @@ export default defineComponent({
|
|
|
render() {
|
|
|
return (
|
|
|
<div class={[styles['video-detail']]}>
|
|
|
- <ColHeader v-slots={{
|
|
|
- right: () => (
|
|
|
- <img src={iconShare} onClick={() => this.shareStatus = true} />
|
|
|
- )
|
|
|
- }} />
|
|
|
+ <ColHeader
|
|
|
+ v-slots={{
|
|
|
+ right: () => (
|
|
|
+ <img src={iconShare} onClick={() => (this.shareStatus = true)} />
|
|
|
+ )
|
|
|
+ }}
|
|
|
+ />
|
|
|
<UserDetail userInfo={this.userInfo} />
|
|
|
- <SectionDetail border>
|
|
|
+ <SectionDetail border={false}>
|
|
|
<p class={styles.introduction}>{this.userInfo.lessonDesc}</p>
|
|
|
</SectionDetail>
|
|
|
|
|
|
- <SectionDetail title="课程列表" icon="courseList" class="mb12" border>
|
|
|
+ <SectionDetail
|
|
|
+ title="课程列表"
|
|
|
+ icon="courseList"
|
|
|
+ class="mb12"
|
|
|
+ border={false}
|
|
|
+ >
|
|
|
{this.detailList.map((item: any) => (
|
|
|
<CourseVideoItem
|
|
|
class={['mb12', styles.videoItem]}
|