...
|
...
|
@@ -85,7 +85,7 @@ export default { |
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
this.topicName = this.$route.query.topicName;
|
|
|
this.topicName = this.$route.params.topicName;
|
|
|
},
|
|
|
activated() {
|
|
|
if (this.scrollTop && this.yoho.direction === 'back') {
|
...
|
...
|
@@ -94,7 +94,7 @@ export default { |
|
|
|
|
|
if (+this.$route.params.topicId !== this.topicId) {
|
|
|
this.topicId = +this.$route.params.topicId;
|
|
|
this.topicName = this.$route.query.topicName;
|
|
|
this.topicName = this.$route.params.topicName;
|
|
|
this.reload = true;
|
|
|
this.init();
|
|
|
}
|
...
|
...
|
|