one.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // compontents/chat/chat.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. * 也暂时放弃了 原本分享进入的组件
  6. */
  7. properties: {
  8. productionData: {
  9. type: Object,
  10. value: {}
  11. },
  12. title: {
  13. type: String,
  14. value: ''
  15. },
  16. type: {
  17. type: String,
  18. value: ''
  19. },
  20. },
  21. /**
  22. * 组件的初始数据
  23. */
  24. data: {
  25. text: '',
  26. chatDatas: [],
  27. animationData: {},
  28. },
  29. /**
  30. * 组件的方法列表
  31. */
  32. methods: {
  33. uploadImage (e) {
  34. const type = this.properties.type;
  35. wx.navigateTo({
  36. url: '../input_content/input_content?type=' + type
  37. })
  38. },
  39. listenerButtonPreviewImage: function(e) {
  40. let imgUrl = [];
  41. imgUrl.push(e.target.dataset.img);
  42. wx.previewImage({
  43. current: '', // 当前显示图片的http链接
  44. urls: imgUrl, // 需要预览的图片http链接列表
  45. //这根本就不走
  46. success: function(res) {
  47. //console.log(res);
  48. },
  49. //也根本不走
  50. fail: function() {
  51. //console.log('fail')
  52. }
  53. })
  54. }
  55. }
  56. })