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
<template>
<div
class="vw-switch-bgc"
@click="handleSwitch"
:class="[value ? 'active' : '', bgcDisabled ? 'disabled' : '']"
></div>
</template>
<script>
export default {
name: "VwSwitchBgc",
inject: {
vwForm: {
default: "",
},
},
props: {
value: Number,
disabled: {
type: Boolean,
default: false,
},
},
data() {
return {}
},
computed: {
bgcDisabled() {
return this.disabled || (this.vwForm || {}).disabled
},
},
methods: {
handleSwitch() {
if (this.bgcDisabled) return
let value = this.value ? 0 : 1
this.$emit("input", value)
},
},
}
</script>
<style lang="scss" scoped>
.vw-switch-bgc {
border: 1px solid #dcdfe6;
cursor: pointer;
height: 32px;
width: 100%;
&.active {
background-color: #f56c6c;
}
&.disabled {
cursor: not-allowed;
}
}
</style>