wny 7441e8c39b [refactor] 重构layout和card组件为自定义组件 (#185)
* layout重构

* [refactor] 重构卡片
2018-04-10 20:40:12 +08:00

25 lines
361 B
JavaScript

Component({
options: {
multipleSlots: true
},
externalClasses: ['card-class'],
properties: {
useThumbSlot: {
type: Boolean,
value: false
},
useDetailSlot: {
type: Boolean,
value: false
},
thumb: String,
price: String,
title: String,
num: Number,
desc: String,
status: String
}
});