itemfollowNews.js 445 B

1234567891011121314151617181920212223
  1. Component({
  2. options: {
  3. styleIsolation: "apply-shared"
  4. },
  5. properties: {
  6. item: Object
  7. },
  8. methods: {
  9. getActivityInfo: function () {
  10. wx.navigateTo({
  11. url: "/pages/activity/activity?id=" + this.properties.item._id
  12. })
  13. },
  14. getPublisherInfo: function () {
  15. wx.navigateTo({
  16. url: "/pages/publisher/publisher?id=" + this.properties.item.publisherId
  17. })
  18. }
  19. }
  20. })