7fa943eb
梁灏
init
|
1
2
3
4
5
6
7
8
9
10
|
<template>
<label :class="wrapClasses">
<span :class="radioClasses">
<span :class="innerClasses"></span>
<input
type="radio"
:class="inputClasses"
:disabled="disabled"
:checked="selected"
@change="change">
|
3c01d81a
梁灏
fixed Modal bug,w...
|
11
|
</span><slot>{{ value }}</slot>
|
7fa943eb
梁灏
init
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
</label>
</template>
<script>
const prefixCls = 'ivu-radio';
export default {
props: {
checked: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
},
value: {
type: [String, Number]
}
},
data () {
return {
selected: false,
group: false
|
b0893113
jingsam
add eslint
|
35
|
};
|
7fa943eb
梁灏
init
|
36
37
38
39
40
41
42
43
44
45
|
},
computed: {
wrapClasses () {
return [
`${prefixCls}-wrapper`,
{
[`${prefixCls}-group-item`]: this.group,
[`${prefixCls}-wrapper-checked`]: this.selected,
[`${prefixCls}-wrapper-disabled`]: this.disabled
}
|
b0893113
jingsam
add eslint
|
46
|
];
|
7fa943eb
梁灏
init
|
47
48
49
50
51
52
53
54
|
},
radioClasses () {
return [
`${prefixCls}`,
{
[`${prefixCls}-checked`]: this.selected,
[`${prefixCls}-disabled`]: this.disabled
}
|
b0893113
jingsam
add eslint
|
55
|
];
|
7fa943eb
梁灏
init
|
56
57
58
59
60
61
62
63
64
|
},
innerClasses () {
return `${prefixCls}-inner`;
},
inputClasses () {
return `${prefixCls}-input`;
}
},
ready () {
|
578ca325
梁灏
fixed Radio bug
|
65
|
if (this.$parent && this.$parent.$options.name === 'radioGroup') this.group = true;
|
7fa943eb
梁灏
init
|
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
if (!this.group) {
this.updateModel();
}
},
methods: {
change (event) {
if (this.disabled) {
return false;
}
this.selected = event.target.checked;
this.checked = this.selected;
if (this.group && this.checked) {
this.$parent.change({
value: this.value,
checked: this.checked
});
}
|
578ca325
梁灏
fixed Radio bug
|
85
86
|
if (!this.group) this.$dispatch('on-form-change', this.selected);
|
7fa943eb
梁灏
init
|
87
88
89
90
91
92
93
94
95
96
|
},
updateModel () {
this.selected = this.checked;
}
},
watch: {
checked () {
this.updateModel();
}
}
|
b0893113
jingsam
add eslint
|
97
98
|
};
</script>
|