| 1234567891011121314151617181920212223 |
- 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
- })
- }
- }
- })
|