index.js 409 B

1234567891011121314151617181920
  1. var app = getApp()
  2. Component({
  3. properties: {
  4. reply: {
  5. type: Object,
  6. value: []
  7. }
  8. },
  9. data: {},
  10. attached: function () {},
  11. methods: {
  12. getpreviewImage: function (e) {
  13. var dataset = e.currentTarget.dataset
  14. wx.previewImage({
  15. urls: this.data.reply[dataset.index].pics,
  16. current: this.data.reply[dataset.index].pics[dataset.pic_index]
  17. })
  18. }
  19. }
  20. })