Skip to content

Commit

Permalink
🐛 修复视频分享参数错误
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaozhu188 committed Sep 10, 2019
1 parent b9152e2 commit e48caa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/views/Video/_id/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,9 @@ export default {
let _shareUrl = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?'
_shareUrl += 'url=' + url
_shareUrl += '&showcount=' + 1 // 参数showcount是否显示分享总数,显示:'1',不显示:'0',默认不显示
_shareUrl += '&desc=' + '♪我发现一个不错的视频-' + this.mv.name
_shareUrl += '&desc=' + '♪我发现一个不错的视频-' + this.mv.description
_shareUrl += '&summary=' + '分享摘要'
_shareUrl += '&title=' + '♪我发现一个不错的视频-' + this.mv.name
_shareUrl += '&title=' + '♪我发现一个不错的视频-' + this.mv.title
_shareUrl += '&site=' + 'https://music.163.com/'
_shareUrl += '&pics=' + this.mv.coverUrl
this.$electron.remote.shell.openExternal(_shareUrl)
Expand Down

0 comments on commit e48caa3

Please sign in to comment.