index.js 298 B

1234567891011121314151617181920
  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. attached: function () {},
  15. methods: {
  16. close: function () {
  17. this.triggerEvent('onClose')
  18. }
  19. }
  20. })