myToast.js 519 B

12345678910111213141516171819202122232425262728293031323334
  1. Component({
  2. /**
  3. * 组件的属性列表
  4. */
  5. properties: {
  6. flag: {
  7. type: "Boolean",
  8. value: false
  9. },
  10. noRightRules: {
  11. type: "String",
  12. value: '1'
  13. }
  14. },
  15. /**
  16. * 组件的初始数据
  17. */
  18. data: {
  19. flag: true,
  20. },
  21. /**
  22. * 组件的方法列表
  23. */
  24. methods: {
  25. close: function () {
  26. this.triggerEvent('ShowAlert', {})
  27. },
  28. touchMove: function(){
  29. return false
  30. }
  31. }
  32. })