index.js 678 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. const Parse = getApp().Parse
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. address: {
  8. type: Object,
  9. value: null,
  10. },
  11. },
  12. /**
  13. * 组件的初始数据
  14. */
  15. data: {
  16. },
  17. /**
  18. * 组件的方法列表
  19. */
  20. methods: {
  21. toAddress() {
  22. this.triggerEvent("toAddress", this.data.address);
  23. },
  24. },
  25. lifetimes: {
  26. detached: function () {
  27. // 在组件实例被从页面节点树移除时执行
  28. },
  29. attached: async function () {
  30. // 在组件实例进入页面节点树时执行
  31. },
  32. }
  33. })