| 1234567891011121314151617181920 |
- Component({
- options: {
- styleIsolation: "apply-shared"
- },
- properties: {
- item:{
- type:Object,
- value:{}
- }
- },
- methods: {
- getPublisherInfo: function(e) {
- wx.navigateTo({
- url: "/pages/publisher/publisher?id=" + e.target.dataset.publisherId
- })
- }
- }
- })
|