comment.js 325 B

1234567891011121314151617181920
  1. // component/comment/comment.js
  2. import util from "../../utils/util"
  3. Component({
  4. /**
  5. * 组件的属性列表
  6. */
  7. properties: {
  8. info:Object,
  9. },
  10. /**
  11. * 组件的方法列表
  12. */
  13. methods: {
  14. previewImages(e){
  15. util.previewImage(this.data.info.images, e.currentTarget.dataset.index)
  16. },
  17. }
  18. })