|
@@ -99,10 +99,7 @@ export default defineComponent({
|
|
|
title: () => (
|
|
|
<div class={styles.name}>
|
|
|
<div class={styles.username}>
|
|
|
- <div>
|
|
|
- {this.userInfo.username ||
|
|
|
- `游客${this.userInfo.id || ''}`}
|
|
|
- </div>
|
|
|
+ {this.userInfo.username || `游客${this.userInfo.id || ''}`}
|
|
|
<div>
|
|
|
{(this.userInfo as any).isDegree && (
|
|
|
<img class={styles.iconTeacher} src={IconXueli} />
|
|
@@ -124,7 +121,11 @@ export default defineComponent({
|
|
|
this.userInfo.auditVersion !== 0 && <>¥{0}</>}
|
|
|
{this.userInfo.lessonPrice <= 0 &&
|
|
|
this.userInfo.auditVersion === 0 && <>免费</>}
|
|
|
- <span style={{color: '#999', fontSize: '14px', fontWeight: 400}}>/{this.userInfo.lessonNum}课时</span>
|
|
|
+ <span
|
|
|
+ style={{ color: '#999', fontSize: '14px', fontWeight: 400 }}
|
|
|
+ >
|
|
|
+ /{this.userInfo.lessonNum}课时
|
|
|
+ </span>
|
|
|
{this.showBuy && (
|
|
|
<div class={styles.buyNum}>
|
|
|
{this.userInfo.buyNum}人已
|