itemmyNews.js 327 B

1234567891011121314151617181920
  1. Component({
  2. options: {
  3. styleIsolation: "apply-shared"
  4. },
  5. properties: {
  6. item:{
  7. type:Object,
  8. value:{}
  9. }
  10. },
  11. methods: {
  12. getPublisherInfo: function(e) {
  13. wx.navigateTo({
  14. url: "/pages/publisher/publisher?id=" + e.target.dataset.publisherId
  15. })
  16. }
  17. }
  18. })