index.js 692 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // lionfish_comshop/s-form-show/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. formData: {
  8. type: Object,
  9. value: {}
  10. }
  11. },
  12. /**
  13. * 组件的初始数据
  14. */
  15. data: {
  16. formList: []
  17. },
  18. attached() {
  19. let formList = this.data.formData.form_list || [];
  20. this.setData({
  21. formList
  22. })
  23. },
  24. /**
  25. * 组件的方法列表
  26. */
  27. methods: {
  28. prevImg: function(e){
  29. let current = e.currentTarget.dataset.current;
  30. let urls = e.currentTarget.dataset.urls;
  31. wx.previewImage({
  32. current, // 当前显示图片的http链接
  33. urls // 需要预览的图片http链接列表
  34. })
  35. },
  36. }
  37. })