| 1234567891011121314151617181920 |
- var app = getApp()
- Component({
- properties: {
- window: {
- type: Boolean,
- value: false
- },
- couponList: {
- type: Array,
- value: []
- }
- },
- data: {},
- attached: function () {},
- methods: {
- close: function () {
- this.triggerEvent('onClose')
- }
- }
- })
|