mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
43 lines
830 B
JavaScript
43 lines
830 B
JavaScript
'use strict';
|
|
|
|
var _relations;
|
|
|
|
var COL_PATH = '../col/index';
|
|
|
|
Component({
|
|
externalClasses: ['custom-class'],
|
|
|
|
relations: (_relations = {}, _relations[COL_PATH] = {
|
|
type: 'descendant'
|
|
}, _relations),
|
|
|
|
properties: {
|
|
gutter: {
|
|
type: Number,
|
|
observer: function observer() {
|
|
this.setGutter();
|
|
}
|
|
}
|
|
},
|
|
|
|
ready: function ready() {
|
|
this.setGutter();
|
|
},
|
|
|
|
|
|
methods: {
|
|
setGutter: function setGutter() {
|
|
var _this = this;
|
|
|
|
var gutter = this.data.gutter;
|
|
|
|
var margin = '-' + Number(gutter) / 2 + 'px';
|
|
var style = gutter ? 'margin-right: ' + margin + '; margin-left: ' + margin + ';' : '';
|
|
|
|
this.setData({ style: style });
|
|
this.getRelationNodes(COL_PATH).forEach(function (col) {
|
|
col.setGutter(_this.data.gutter);
|
|
});
|
|
}
|
|
}
|
|
}); |