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

Commit

Permalink
fix(pay): (#593) 点击无需付费的动态却显示了付费信息的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mutoe committed Oct 19, 2018
1 parent 9c3c0ba commit 214ba05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/page/feed/FeedDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ export default {
});
},
onFileClick(paid_node) {
if (!paid_node || paid_node.paid) return;
if (!paid_node || paid_node.paid !== false) return;
if (this.$lstore.hasData("H5_ACCESS_TOKEN")) {
this.$bus.$emit("payfor", {
Expand Down

1 comment on commit 214ba05

@mutoe
Copy link
Contributor Author

@mutoe mutoe commented on 214ba05 Oct 24, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

refer #538

Please sign in to comment.