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