Component({ options: { styleIsolation: "apply-shared" }, properties: { item: Object }, methods: { getActivityInfo: function () { wx.navigateTo({ url: "/pages/activity/activity?id=" + this.properties.item._id }) }, getPublisherInfo: function () { wx.navigateTo({ url: "/pages/publisher/publisher?id=" + this.properties.item.publisherId }) } } })