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