1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="custom-class van-row" :style="viewStyle">
- <slot />
- </view>
- </template>
- <script>
- '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.gutter) {
- target.setGutter(this.gutter);
- }
- }
- },
- props: {
- gutter: {
- type: Number,
- observer: 'setGutter'
- }
- },
- data: {
- viewStyle: ''
- },
- mounted: function () {
- if (this.gutter) {
- this.setGutter();
- }
- },
- methods: {
- setGutter: function () {
- var that = this;
- var gutter = this.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(that.gutter);
- });
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|