...
|
...
|
@@ -140,15 +140,15 @@ export default { |
|
|
authorUid: this.authorInfo.authorUid,
|
|
|
},
|
|
|
query: {
|
|
|
userName: `${this.isOwner ? '我' : this.authorBaseData.nickName}的${this.waterFallTypeName}`
|
|
|
userName: this.detailTitle
|
|
|
}
|
|
|
};
|
|
|
},
|
|
|
waterFallType() {
|
|
|
return ['publish', 'fav'][this.activeIndex];
|
|
|
},
|
|
|
waterFallTypeName() {
|
|
|
return ['内容', '收藏'][this.activeIndex];
|
|
|
detailTitle() {
|
|
|
return [this.authorBaseData.nickName, '收藏'][this.activeIndex];
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
...
|
...
|
|