index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="custom-class van-row" :style="viewStyle">
  3. <slot />
  4. </view>
  5. </template>
  6. <script>
  7. 'use strict';
  8. Object.defineProperty(exports, '__esModule', {
  9. value: true
  10. });
  11. var component_1 = require('../common/component');
  12. component_1.VantComponent({
  13. relation: {
  14. name: 'col',
  15. type: 'descendant',
  16. current: 'row',
  17. linked: function (target) {
  18. if (this.gutter) {
  19. target.setGutter(this.gutter);
  20. }
  21. }
  22. },
  23. props: {
  24. gutter: {
  25. type: Number,
  26. observer: 'setGutter'
  27. }
  28. },
  29. data: {
  30. viewStyle: ''
  31. },
  32. mounted: function () {
  33. if (this.gutter) {
  34. this.setGutter();
  35. }
  36. },
  37. methods: {
  38. setGutter: function () {
  39. var that = this;
  40. var gutter = this.gutter;
  41. var margin = '-' + Number(gutter) / 2 + 'px';
  42. var viewStyle = gutter ? 'margin-right: ' + margin + '; margin-left: ' + margin + ';' : '';
  43. this.setData({
  44. viewStyle: viewStyle
  45. });
  46. this.getRelationNodes('../col/index').forEach(function (col) {
  47. col.setGutter(that.gutter);
  48. });
  49. }
  50. }
  51. });
  52. </script>
  53. <style>
  54. @import './index.css';
  55. </style>