mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 13:22:51 +00:00
24 lines
305 B
JavaScript
24 lines
305 B
JavaScript
var app = getApp();
|
|
Component({
|
|
properties: {
|
|
window:{
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
couponList:{
|
|
type:Array,
|
|
value:[],
|
|
}
|
|
},
|
|
data: {
|
|
|
|
},
|
|
attached: function () {
|
|
|
|
},
|
|
methods: {
|
|
close:function(){
|
|
this.triggerEvent('onColse');
|
|
}
|
|
}
|
|
}) |