大数据平台的小程序版本

selfShowModal.js 473B

12345678910111213141516171819202122232425262728293031323334
  1. // components/selfShowModal/selfShowModal.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. title:{
  8. type: String,
  9. value: true,
  10. define: '提示'
  11. },
  12. content:{
  13. type: String,
  14. value: false,
  15. },
  16. },
  17. /**
  18. * 组件的初始数据
  19. */
  20. data: {
  21. },
  22. /**
  23. * 组件的方法列表
  24. */
  25. methods: {
  26. yesButton(){
  27. //点击确定按钮
  28. this.triggerEvent('buttonEvent','success')
  29. }
  30. }
  31. })