| 123456789101112131415161718192021222324252627282930 |
- // component/coupon/coupon.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- info: Object,
- goods: String|Object,
- type: {
- type: Number,
- value: 1
- } //1领取 2使用
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- couponTap(e){
- this.triggerEvent('couponTap',{info: this.data.info,type:e.currentTarget.dataset.type})
- }
- }
- })
|