123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <template>
- <view class="van-checkbox custom-class">
- <view class="van-checkbox__icon-wrap" @tap="toggle">
- <slot v-if="useIconSlot" name="icon" />
- <van-icon
- v-else
- name="success"
- size="0.8em"
- :class="utils.bem('checkbox__icon', [shape, { disabled: disabled || parentDisabled, checked: value }])"
- :style="computed.iconStyle(checkedColor, value, disabled, parentDisabled, iconSize)"
- custom-class="icon-class"
- custom-style="line-height: 1.25em;"
- />
- </view>
- <view :class="'label-class ' + utils.bem('checkbox__label', [labelPosition, { disabled: disabled || parentDisabled }])" @tap="onClickLabel">
- <slot />
- </view>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
- <script module="computed" lang="wxs" src="@/miniprogram_npm/@vant/weapp/checkbox/index.wxs"></script>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- function emit(target, value) {
- target.$emit('input', value);
- target.$emit('change', value);
- }
- component_1.VantComponent({
- field: true,
- relation: {
- name: 'checkbox-group',
- type: 'ancestor',
- current: 'checkbox'
- },
- classes: ['icon-class', 'label-class'],
- props: {
- value: Boolean,
- disabled: Boolean,
- useIconSlot: Boolean,
- checkedColor: String,
- labelPosition: String,
- labelDisabled: Boolean,
- shape: {
- type: String,
- value: 'round'
- },
- iconSize: {
- type: null,
- value: 20
- }
- },
- data: {
- parentDisabled: false
- },
- methods: {
- emitChange: function (value) {
- if (this.parent) {
- this.setParentValue(this.parent, value);
- } else {
- emit(this, value);
- }
- },
- toggle: function () {
- var _a = this;
- var parentDisabled = _a.parentDisabled;
- var disabled = _a.disabled;
- var value = _a.value;
- if (!disabled && !parentDisabled) {
- this.emitChange(!value);
- }
- },
- onClickLabel: function () {
- var _a = this;
- var labelDisabled = _a.labelDisabled;
- var parentDisabled = _a.parentDisabled;
- var disabled = _a.disabled;
- var value = _a.value;
- if (!disabled && !labelDisabled && !parentDisabled) {
- this.emitChange(!value);
- }
- },
- setParentValue: function (parent, value) {
- var parentValue = parent.data.value.slice();
- var name = this.name;
- var max = parent.data.max;
- if (value) {
- if (max && parentValue.length >= max) {
- return;
- }
- if (parentValue.indexOf(name) === -1) {
- parentValue.push(name);
- emit(parent, parentValue);
- }
- } else {
- var index = parentValue.indexOf(name);
- if (index !== -1) {
- parentValue.splice(index, 1);
- emit(parent, parentValue);
- }
- }
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|