index.js 412 B

12345678910111213141516171819202122232425262728
  1. Component({
  2. /**
  3. * 页面的初始数据
  4. */
  5. data: {
  6. showTip: false,
  7. },
  8. properties: {
  9. showTipProps: Boolean,
  10. title:String,
  11. content:String
  12. },
  13. observers: {
  14. showTipProps: function(showTipProps) {
  15. this.setData({
  16. showTip: showTipProps
  17. });
  18. }
  19. },
  20. methods: {
  21. onClose(){
  22. this.setData({
  23. showTip: !this.data.showTip
  24. });
  25. },
  26. }
  27. });