2019-09-11 16:10:24 +08:00

71 lines
1.3 KiB
TypeScript

import { VantComponent } from '../common/component';
VantComponent({
relation: {
name: 'grid-item',
type: 'descendant',
linked(child) {
this.children.push(child);
},
unlinked(child) {
this.children = this.children.filter(
(item: WechatMiniprogram.Component.TrivialInstance) => item !== child
);
}
},
props: {
square: {
type: Boolean,
observer: 'updateChildren'
},
gutter: {
type: [Number, String],
value: 0,
observer: 'updateChildren'
},
clickable: {
type: Boolean,
observer: 'updateChildren'
},
columnNum: {
type: Number,
value: 4,
observer: 'updateChildren'
},
center: {
type: Boolean,
value: true,
observer: 'updateChildren'
},
border: {
type: Boolean,
value: true,
observer: 'updateChildren'
}
},
beforeCreate() {
this.children = [];
},
created() {
const { gutter } = this.data;
if (gutter) {
this.setData({
style: `padding-left: ${gutter}px`
});
}
},
methods: {
updateChildren() {
this.children.forEach(
(child: WechatMiniprogram.Component.TrivialInstance) => {
child.updateStyle();
}
);
}
}
});