service.js 453 B

1234567891011121314151617181920212223242526272829303132
  1. // components/Service/service.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. show: {
  8. type: Boolean,
  9. observer: function (newVal, oldVal) {
  10. this.setData({ show: newVal })
  11. console.log(this.data.show);
  12. }
  13. },
  14. },
  15. /**
  16. * 组件的初始数据
  17. */
  18. data: {
  19. show:false
  20. },
  21. /**
  22. * 组件的方法列表
  23. */
  24. methods: {
  25. sure(){
  26. this.triggerEvent("sure")
  27. }
  28. }
  29. })