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