Blame view

src/components/grid/col.vue 2.85 KB
7fa943eb   梁灏   init
1
  <template>
d2203972   梁灏   add gutter to Row...
2
      <div :class="classes" :style="styles">
7fa943eb   梁灏   init
3
4
5
6
          <slot></slot>
      </div>
  </template>
  <script>
9eec7f16   梁灏   fixed #1661
7
      import { findComponentUpward } from '../../utils/assist';
7fa943eb   梁灏   init
8
9
10
      const prefixCls = 'ivu-col';
  
      export default {
34ee7b4a   梁灏   support Tree & ad...
11
          name: 'iCol',
7fa943eb   梁灏   init
12
13
14
15
16
17
          props: {
              span: [Number, String],
              order: [Number, String],
              offset: [Number, String],
              push: [Number, String],
              pull: [Number, String],
84a351df   梁灏   Layout support re...
18
19
20
21
              className: String,
              xs: [Number, Object],
              sm: [Number, Object],
              md: [Number, Object],
f5656d0b   Eric Tian   修复Grid栅格组件Col属性xl...
22
23
24
              lg: [Number, Object],
              xl: [Number, Object],
              xxl: [Number, Object]
7fa943eb   梁灏   init
25
          },
d2203972   梁灏   add gutter to Row...
26
27
28
          data () {
              return {
                  gutter: 0
b0893113   jingsam   :art: add eslint
29
              };
d2203972   梁灏   add gutter to Row...
30
          },
7fa943eb   梁灏   init
31
32
          computed: {
              classes () {
84a351df   梁灏   Layout support re...
33
                  let classList = [
7fa943eb   梁灏   init
34
35
36
37
38
39
40
41
42
                      `${prefixCls}`,
                      {
                          [`${prefixCls}-span-${this.span}`]: this.span,
                          [`${prefixCls}-order-${this.order}`]: this.order,
                          [`${prefixCls}-offset-${this.offset}`]: this.offset,
                          [`${prefixCls}-push-${this.push}`]: this.push,
                          [`${prefixCls}-pull-${this.pull}`]: this.pull,
                          [`${this.className}`]: !!this.className
                      }
84a351df   梁灏   Layout support re...
43
44
                  ];
  
f5656d0b   Eric Tian   修复Grid栅格组件Col属性xl...
45
                  ['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].forEach(size => {
84a351df   梁灏   Layout support re...
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
                      if (typeof this[size] === 'number') {
                          classList.push(`${prefixCls}-span-${size}-${this[size]}`);
                      } else if (typeof this[size] === 'object') {
                          let props = this[size];
                          Object.keys(props).forEach(prop => {
                              classList.push(
                                  prop !== 'span'
                                      ? `${prefixCls}-${size}-${prop}-${props[prop]}`
                                      : `${prefixCls}-span-${size}-${props[prop]}`
                              );
                          });
                      }
                  });
  
                  return classList;
d2203972   梁灏   add gutter to Row...
61
62
63
64
65
66
67
              },
              styles () {
                  let style = {};
                  if (this.gutter !== 0) {
                      style = {
                          paddingLeft: this.gutter / 2 + 'px',
                          paddingRight: this.gutter / 2 + 'px'
b0893113   jingsam   :art: add eslint
68
                      };
d2203972   梁灏   add gutter to Row...
69
70
71
                  }
  
                  return style;
7fa943eb   梁灏   init
72
              }
c2db4f92   梁灏   fixed #540
73
74
75
          },
          methods: {
              updateGutter () {
9eec7f16   梁灏   fixed #1661
76
77
78
79
                  const Row = findComponentUpward(this, 'Row');
                  if (Row) {
                      Row.updateGutter(Row.gutter);
                  }
c2db4f92   梁灏   fixed #540
80
81
82
83
84
85
86
              }
          },
          mounted () {
              this.updateGutter();
          },
          beforeDestroy () {
              this.updateGutter();
7fa943eb   梁灏   init
87
          }
b0893113   jingsam   :art: add eslint
88
89
      };
  </script>