whychdw
2021-06-03 2baa58f9515a661d53118344e237e3441300b24f
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<template>
    <div>
        <span
        class="weui-switch" :class="{'weui-switch-on' : isChecked, 'switch-disabled': disabled}"
        :value="value" @click="toggle" style="position:relative">
            <div v-if="isChecked && direction.length > 0" style="width:100%;height:100%;position:absolute;padding:0 5px;display: flex;
            align-items: center;color:#FFF;user-select:none">
                {{ direction[0] }}
            </div>
            <div v-if="!isChecked && direction.length > 0" style="width:100%;height:100%;position:absolute;padding:0 5px;right:2px;display: flex;flex-direction: row-reverse;
            align-items: center;color:#7A7A7A;user-select:none">
                {{ direction[1] }}
            </div>
        </span>
    </div>
</template>
<script>
export default {
    name: 'switchComponent',
    model: {
        prop: "value",
        event: 'changeValue'
    },
    props: {
        value: {
            type: Boolean,
            default: true
        },
        text: {
            type: String,
            default: ''
        },
        disabled: {
            type: Boolean,
            default: false
        },
    },
    data() {
        return {
            isChecked: this.value
        }
    },
    computed: {
        direction() {
            if (this.text) {
                return this.text.split('|')
            } else {
                return []
            }
        }
    },
    watch: {
        value(val) {
            this.isChecked = val
        },
        isChecked(val) {
            this.$emit('change', val);
        }
    },
    methods: {
        toggle() {
            if(!this.disabled) {
                this.isChecked = !this.isChecked;
                this.$emit('changeValue', this.isChecked);
            }
        }
    },
}
</script>
<style>
.weui-switch {
    display: block;
    position: relative;
    width: 72px;
    height: 28px;
    outline: 0;
    border-radius: 16px;
    box-sizing: border-box;
    background-color: #DFDFDF;
    transition: background-color 0.1s, border 0.1s;
    cursor: pointer;
    font-size: 12px;
}
.weui-switch.switch-disabled {
    cursor: not-allowed;
}
.weui-switch:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 28px;
    border-radius: 15px;
    background-color: #d7d7d7;
    transition: transform 0.35s cubic-bezier(0.45, 1, 0.4, 1);
}
 
.weui-switch:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 15px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
}
 
.weui-switch-on {
    border-color: #6F6F6F;
    background-color: #1AAD19;
}
 
.weui-switch-on:before {
    border-color: #1AAD19;
    background-color: #409eff;
}
 
.weui-switch-on:after {
    transform: translateX(45px);
}
</style>