app-checkbox.vue 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
<template>
    <div class="app-checkbox">
        <checkbox v-model="CurrentVal" :disabled="disabled || readonly"></checkbox>
    </div>
</template>

<script lang="ts">
import { Vue, Component, Prop } from 'vue-property-decorator';

@Component({})
export default class AppCheckbox extends Vue {
    /**
     * 传入值
     * @type {any}
     * @memberof checkbox
     */
    @Prop() public value?: any;

    /**
     * 是否禁用
     * @type {boolean}
     * @memberof checkbox
     */
    @Prop() public disabled?: boolean;

    /**
     * 只读模式
     *
     * @type {boolean}
     */
    @Prop({ default: false }) public readonly?: boolean;

    /**
     * 设置未选中值
     *
     * @type {boolean}
     */
    @Prop({ default: 0 }) public nullValue!: any;

    /**
     * 设置选中值
     *
     * @type {boolean}
     */
    @Prop({ default: 1 }) public selectValue!: any;

    /**
     * 当前值
     *
     * @memberof checkbox
     */
    get CurrentVal() {
        if (this.value === this.selectValue) {
          return true;
        } else {
          return false;
        }
    }

    /**
     * 值变化
     *
     * @memberof checkbox
     */
    set CurrentVal(val: any) {
        let value: any;
        if (val) {
          value = this.selectValue;
        } else {
          value = this.nullValue;
        }
        this.$emit('change', value);
    }
}
</script>