123456789101112131415161718192021222324252627282930313233343536 |
- // components/productCard/index.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- data:{
- value:'',
- type:{}
- },
- changeQty:{
- value:false,
- type:Boolean
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- onIconTap (data) {
- this.triggerEvent("delete", this.data.data);
- },
- inputChange (e) {
- this.data.data.qty = e.detail.value
- this.triggerEvent("input", this.data.data);
- }
- }
- })
|