index.js 306 B

123456789101112131415161718192021222324
  1. var app = getApp();
  2. Component({
  3. properties: {
  4. window:{
  5. type: Boolean,
  6. value: false,
  7. },
  8. couponList:{
  9. type:Array,
  10. value:[],
  11. }
  12. },
  13. data: {
  14. },
  15. attached: function () {
  16. },
  17. methods: {
  18. close:function(){
  19. this.triggerEvent('onColse');
  20. }
  21. }
  22. })