Files
ChowBox/miniapp/components/mode-card/mode-card.js

15 lines
347 B
JavaScript
Raw Permalink Normal View History

Component({
properties: {
type: { type: String, value: 'takeout' },
icon: { type: String, value: '' },
title: { type: String, value: '' },
desc: { type: String, value: '' },
actionText: { type: String, value: '开盒' }
},
methods: {
onTap() {
this.triggerEvent('open', { type: this.data.type });
}
}
});