|
@@ -17,7 +17,7 @@ export default defineComponent({
|
|
|
data() {
|
|
|
return {
|
|
|
query: {
|
|
|
- ...this.$route.query,
|
|
|
+ ...this.$route.query
|
|
|
// id: 'COOLESHOW-TEMP-416-1663833046284',
|
|
|
// userId: 416
|
|
|
},
|
|
@@ -125,14 +125,14 @@ export default defineComponent({
|
|
|
</div>
|
|
|
<div class={styles.titleWrap}>
|
|
|
<div class={styles.title}>{this.liveRoom.roomTitle}</div>
|
|
|
- <div class={styles.liveUser}>主讲人:{this.teacher.realName || this.teacher.username}</div>
|
|
|
+ <div class={styles.liveUser}>
|
|
|
+ 主讲人:{this.teacher.realName || this.teacher.username}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div class={styles.content}>
|
|
|
<div class={styles.top}>直播内容</div>
|
|
|
- <div>
|
|
|
- {this.liveRoom.liveRemark}
|
|
|
- </div>
|
|
|
+ <div>{this.liveRoom.liveRemark}</div>
|
|
|
<div class={styles.comentWrap}>
|
|
|
<div class={styles.contentAvator}>
|
|
|
<img src={this.student.avatar || iconDefault} />
|
|
@@ -141,7 +141,9 @@ export default defineComponent({
|
|
|
<div class={styles.comentTitle}>
|
|
|
快进入达人的直播间一起围观~
|
|
|
</div>
|
|
|
- <div class={styles.comentDes}>{this.teacher.realName || this.student.username} 为您推荐</div>
|
|
|
+ <div class={styles.comentDes}>
|
|
|
+ {this.teacher.realName || this.student.username} 为您推荐
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -149,7 +151,13 @@ export default defineComponent({
|
|
|
|
|
|
<ColSticky position="bottom">
|
|
|
<div class={['btnGroup']} style={{ paddingTop: '12px' }}>
|
|
|
- <Button color='linear-gradient(180deg, #59E5D5 0%, #2DC7AA 100%)' block round type="primary" onClick={this.openApp}>
|
|
|
+ <Button
|
|
|
+ color="linear-gradient(180deg, #59E5D5 0%, #2DC7AA 100%)"
|
|
|
+ block
|
|
|
+ round
|
|
|
+ type="primary"
|
|
|
+ onClick={this.openApp}
|
|
|
+ >
|
|
|
开启酷乐秀进入直播间!
|
|
|
</Button>
|
|
|
</div>
|