Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Commit

Permalink
fix: 修复个人主页分享后404
Browse files Browse the repository at this point in the history
  • Loading branch information
boxshadow committed Apr 11, 2018
1 parent 1cc98f3 commit 31d3ed7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/page/UserHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ export default {
Wx.onMenuShareTimeline({
title: this.user.name,
desc: "我发现了一个好玩的家伙,来看看吧",
link: window.location.origin + this.$route.fullPath,
link: url,
imgUrl: this.user.avatar,
success: () => {
this.shareSuccess();
Expand All @@ -375,7 +375,7 @@ export default {
Wx.onMenuShareAppMessage({
title: this.user.name,
desc: "我发现了一个好玩的家伙,来看看吧",
link: window.location.origin + this.$route.fullPath,
link: url,
imgUrl: this.user.avatar,
success: () => {
this.shareSuccess();
Expand All @@ -387,7 +387,7 @@ export default {
Wx.onMenuShareQQ({
title: this.user.name,
desc: "我发现了一个好玩的家伙,来看看吧",
link: window.location.origin + this.$route.fullPath,
link: url,
imgUrl: this.user.avatar,
success: () => {
this.shareSuccess();
Expand All @@ -414,7 +414,7 @@ export default {
Wx.onMenuShareTimeline({
title: this.user.name,
desc: "我发现了一个好玩的家伙,来看看吧",
link: window.location.origin + this.$route.fullPath,
link: url,
imgUrl: this.user.avatar,
success: () => {
this.shareSuccess();
Expand All @@ -426,7 +426,7 @@ export default {
Wx.onMenuShareAppMessage({
title: this.user.name,
desc: "我发现了一个好玩的家伙,来看看吧",
link: window.location.origin + this.$route.fullPath,
link: url,
imgUrl: this.user.avatar,
success: () => {
this.shareSuccess();
Expand All @@ -438,7 +438,7 @@ export default {
Wx.onMenuShareQQ({
title: this.user.name,
desc: "我发现了一个好玩的家伙,来看看吧",
link: window.location.origin + this.$route.fullPath,
link: url,
imgUrl: this.user.avatar,
success: () => {
this.shareSuccess();
Expand Down

0 comments on commit 31d3ed7

Please sign in to comment.