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
| <template>
| <a-switch v-model="checkStatus" :disabled="disabled" @change="handleChange"/>
| </template>
| <script>
|
| export default {
| name: 'JSwitch',
| props: {
| value:{
| type: String,
| required: false
| },
| disabled:{
| type: Boolean,
| required: false,
| default: false
| },
| options:{
| type:Array,
| required:false,
| default:()=>['Y','N']
| }
| },
| data () {
| return {
| checkStatus: false
| }
| },
| watch: {
| value:{
| immediate: true,
| handler(val){
| if(!val){
| this.checkStatus = false
| this.$emit('change', this.options[1]);
| }else{
| if(this.options[0]==val){
| this.checkStatus = true
| }else{
| this.checkStatus = false
| }
| }
| }
| }
| },
| methods: {
| handleChange(checked){
| let flag = checked===false?this.options[1]:this.options[0];
| this.$emit('change', flag);
| }
| },
| model: {
| prop: 'value',
| event: 'change'
| }
| }
| </script>
|
|