|
@@ -134,11 +134,13 @@ export default {
|
|
|
this.$set(this, `show`, false);
|
|
|
this.$set(this, `title`, '科技频道');
|
|
|
} else if (index == 2) {
|
|
|
- if (this.chooseText == '嘉宾访谈') {
|
|
|
- this.$set(this, `title`, '培训访谈');
|
|
|
- } else if (this.chooseText == '技能培训') {
|
|
|
- this.$set(this, `title`, '技能培训');
|
|
|
- }
|
|
|
+ this.$set(this, `title`, '培训访谈');
|
|
|
+ // if (this.chooseText == '嘉宾访谈') {
|
|
|
+ // this.$set(this, `title`, '嘉宾访谈');
|
|
|
+ // console.log(this.title);
|
|
|
+ // } else if (this.chooseText == '技能培训') {
|
|
|
+ // this.$set(this, `title`, '技能培训');
|
|
|
+ // }
|
|
|
} else if (index == 3) {
|
|
|
this.$set(this, `show`, false);
|
|
|
this.$set(this, `title`, '项目路演');
|
|
@@ -148,6 +150,7 @@ export default {
|
|
|
interviewClick(name) {
|
|
|
this.$set(this, `show`, false);
|
|
|
this.$set(this, `chooseText`, name);
|
|
|
+ this.$set(this, `title`, name);
|
|
|
},
|
|
|
trainClick() {
|
|
|
this.show = true;
|