index.js 309 B

12345678910111213141516171819202122
  1. Component({
  2. options:{
  3. // addGlobalClass:true
  4. },
  5. properties: {
  6. show:{
  7. type: Boolean,
  8. observer: function (newVal, oldVal) {
  9. this.setData({ show: newVal });
  10. }
  11. },
  12. },
  13. data: {
  14. show:true
  15. },
  16. methods: {
  17. close(){
  18. this.setData({show:false})
  19. }
  20. }
  21. })