product-detail-header.js
443 Bytes
// page/subPackage/pages/zeroSell/components/product-detail-header.js
Component({
properties: {
product: {
type: Object
},
avatars: {
type: Array
},
shareFlag: {
type: Boolean,
value: false,
observer(value) {
this.setData({show: value})
}
}
},
data: {
show: false
},
ready: function () {
// console.log(`productdetail: ${this.properties.avatars}`)
}
});