mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
44 lines
1016 B
JavaScript
44 lines
1016 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var component_1 = require('../common/component');
|
|
component_1.VantComponent({
|
|
relation: {
|
|
name: 'col',
|
|
type: 'descendant',
|
|
current: 'row',
|
|
linked: function (target) {
|
|
if (this.data.gutter) {
|
|
target.setGutter(this.data.gutter);
|
|
}
|
|
},
|
|
},
|
|
props: {
|
|
gutter: {
|
|
type: Number,
|
|
observer: 'setGutter',
|
|
},
|
|
},
|
|
data: {
|
|
viewStyle: '',
|
|
},
|
|
mounted: function () {
|
|
if (this.data.gutter) {
|
|
this.setGutter();
|
|
}
|
|
},
|
|
methods: {
|
|
setGutter: function () {
|
|
var _this = this;
|
|
var gutter = this.data.gutter;
|
|
var margin = '-' + Number(gutter) / 2 + 'px';
|
|
var viewStyle = gutter
|
|
? 'margin-right: ' + margin + '; margin-left: ' + margin + ';'
|
|
: '';
|
|
this.setData({ viewStyle: viewStyle });
|
|
this.getRelationNodes('../col/index').forEach(function (col) {
|
|
col.setGutter(_this.data.gutter);
|
|
});
|
|
},
|
|
},
|
|
});
|