index.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <view class="van-checkbox custom-class">
  3. <view class="van-checkbox__icon-wrap" @tap="toggle">
  4. <slot v-if="useIconSlot" name="icon" />
  5. <van-icon
  6. v-else
  7. name="success"
  8. size="0.8em"
  9. :class="utils.bem('checkbox__icon', [shape, { disabled: disabled || parentDisabled, checked: value }])"
  10. :style="computed.iconStyle(checkedColor, value, disabled, parentDisabled, iconSize)"
  11. custom-class="icon-class"
  12. custom-style="line-height: 1.25em;"
  13. />
  14. </view>
  15. <view :class="'label-class ' + utils.bem('checkbox__label', [labelPosition, { disabled: disabled || parentDisabled }])" @tap="onClickLabel">
  16. <slot />
  17. </view>
  18. </view>
  19. </template>
  20. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/dist/wxs/utils.wxs"></script>
  21. <script module="computed" lang="wxs" src="@/node_modules/@vant/weapp/dist/checkbox/index.wxs"></script>
  22. <script>
  23. import { VantComponent } from '../common/component';
  24. function emit(target, value) {
  25. target.$emit('input', value);
  26. target.$emit('change', value);
  27. }
  28. export default {
  29. data() {
  30. return {
  31. parentDisabled: false
  32. };
  33. },
  34. field: true,
  35. '../checkbox-group/index': {
  36. name: 'checkbox-group',
  37. type: 'ancestor',
  38. current: 'checkbox'
  39. },
  40. classes: ['icon-class', 'label-class'],
  41. props: {
  42. value: Boolean,
  43. disabled: Boolean,
  44. useIconSlot: Boolean,
  45. checkedColor: String,
  46. labelPosition: String,
  47. labelDisabled: Boolean,
  48. shape: {
  49. type: String,
  50. default: 'round'
  51. },
  52. iconSize: {
  53. type: null,
  54. default: 20
  55. }
  56. },
  57. methods: {
  58. emitChange(value) {
  59. if (this.parent) {
  60. this.setParentValue(this.parent, value);
  61. } else {
  62. emit(this, value);
  63. }
  64. },
  65. toggle() {
  66. const { parentDisabled, disabled, value } = this;
  67. if (!disabled && !parentDisabled) {
  68. this.emitChange(!value);
  69. }
  70. },
  71. onClickLabel() {
  72. const { labelDisabled, parentDisabled, disabled, value } = this;
  73. if (!disabled && !labelDisabled && !parentDisabled) {
  74. this.emitChange(!value);
  75. }
  76. },
  77. setParentValue(parent, value) {
  78. const parentValue = parent.data.value.slice();
  79. const { name } = this;
  80. const { max } = parent.data;
  81. if (value) {
  82. if (max && parentValue.length >= max) {
  83. return;
  84. }
  85. if (parentValue.indexOf(name) === -1) {
  86. parentValue.push(name);
  87. emit(parent, parentValue);
  88. }
  89. } else {
  90. const index = parentValue.indexOf(name);
  91. if (index !== -1) {
  92. parentValue.splice(index, 1);
  93. emit(parent, parentValue);
  94. }
  95. }
  96. }
  97. }
  98. };
  99. </script>
  100. <style>
  101. @import './index.css';
  102. </style>