index.vue 1001 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view :class="'custom-class ' + utils.bem('col', [span]) + ' ' + (offset ? 'van-col--offset-' + offset : '')" :style="viewStyle">
  3. <slot />
  4. </view>
  5. </template>
  6. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
  7. <script>
  8. import { VantComponent } from '../common/component';
  9. export default {
  10. data() {
  11. return {
  12. viewStyle: ''
  13. };
  14. },
  15. '../row/index': {
  16. name: 'row',
  17. type: 'ancestor',
  18. current: 'col'
  19. },
  20. props: {
  21. span: Number,
  22. offset: Number
  23. },
  24. methods: {
  25. setGutter(gutter) {
  26. const padding = `${gutter / 2}px`;
  27. const viewStyle = gutter ? `padding-left: ${padding}; padding-right: ${padding};` : '';
  28. if (viewStyle !== this.viewStyle) {
  29. this.setData({
  30. viewStyle
  31. });
  32. }
  33. }
  34. }
  35. };
  36. </script>
  37. <style>
  38. @import './index.css';
  39. </style>