Blame view

ant-design-vue-jeecg/src/components/jeecg/JSwitch.vue 1.79 KB
1
<template>
2
3
4
5
6
7
8
9
  <div>
    <a-select v-if="query" style="width: 100%" @change="handleSelectChange">
      <a-select-option v-for="(item, index) in queryOption" :key="index" :value="item.value">
        {{ item.text }}
      </a-select-option>
    </a-select>
    <a-switch v-else v-model="checkStatus" :disabled="disabled" @change="handleChange"/>
  </div>
10
11
12
13
14
15
16
</template>
<script>

  export default {
    name: 'JSwitch',
    props: {
      value:{
17
        type: String | Number,
18
19
20
21
22
23
24
25
26
27
28
        required: false
      },
      disabled:{
        type: Boolean,
        required: false,
        default: false
      },
      options:{
        type:Array,
        required:false,
        default:()=>['Y','N']
29
30
31
32
33
      },
      query:{
        type: Boolean,
        required: false,
        default: false
34
35
36
37
38
39
40
41
42
43
44
      }
    },
    data () {
      return {
        checkStatus: false
      }
    },
    watch: {
      value:{
        immediate: true,
        handler(val){
45
46
          if(!this.query){
            if(!val){
47
              this.checkStatus = false
48
49
50
51
52
53
54
              this.$emit('change', this.options[1]);
            }else{
              if(this.options[0]==val){
                this.checkStatus = true
              }else{
                this.checkStatus = false
              }
55
56
            }
          }
57
58
59
60
        }
      }
    },
61
62
63
64
65
66
67
68
    computed:{
      queryOption(){
        let arr = []
        arr.push({value:this.options[0],text:'是'})
        arr.push({value:this.options[1],text:'否'})
        return arr;
      }
    },
69
70
71
72
    methods: {
      handleChange(checked){
        let flag = checked===false?this.options[1]:this.options[0];
        this.$emit('change', flag);
73
74
75
      },
      handleSelectChange(value){
        this.$emit('change', value);
76
77
78
79
80
81
82
83
      }
    },
    model: {
      prop: 'value',
      event: 'change'
    }
  }
</script>