mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
69 lines
1.2 KiB
TypeScript
69 lines
1.2 KiB
TypeScript
import { VantComponent } from '../common/component';
|
|
import { addUnit } from '../common/utils';
|
|
|
|
VantComponent({
|
|
relation: {
|
|
name: 'grid-item',
|
|
type: 'descendant',
|
|
current: 'grid',
|
|
},
|
|
|
|
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'
|
|
}
|
|
},
|
|
|
|
data: {
|
|
viewStyle: '',
|
|
},
|
|
|
|
beforeCreate() {
|
|
this.children = [];
|
|
},
|
|
|
|
created() {
|
|
const { gutter } = this.data;
|
|
if (gutter) {
|
|
this.setData({
|
|
viewStyle: `padding-left: ${addUnit(gutter)}`
|
|
});
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
updateChildren() {
|
|
this.children.forEach(
|
|
(child: WechatMiniprogram.Component.TrivialInstance) => {
|
|
child.updateStyle();
|
|
}
|
|
);
|
|
}
|
|
}
|
|
});
|