Skip to content

Commit

Permalink
fix(SPA): 下载付费图片点击查看时无需处理
Browse files Browse the repository at this point in the history
issue #515
  • Loading branch information
mutoe committed Dec 14, 2018
1 parent fae0e33 commit d010f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/spa/src/page/feed/FeedDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ export default {
})
},
onFileClick (paidNode) {
if (!paidNode || paidNode.paid !== false) return
if (!paidNode || paidNode.paid !== false || paidNode.type === 'download') return
if (this.$lstore.hasData('H5_ACCESS_TOKEN')) {
this.$bus.$emit('payfor', {
Expand Down

0 comments on commit d010f69

Please sign in to comment.