mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
fix: selection problem in ColorCheckBox radio mode; 🐛
修复:ColorCheckBox 单选模式下的选择问题;
This commit is contained in:
parent
3ed878b8f3
commit
5c0ccf9df9
@ -44,18 +44,6 @@ const Group = {
|
||||
watch: {
|
||||
values(value) {
|
||||
this.$emit('change', value, this.colors)
|
||||
},
|
||||
defaultValues(value) {
|
||||
if (this.multiple) {
|
||||
this.options.forEach(item => {
|
||||
item.sChecked = value.indexOf(item.value) > -1
|
||||
})
|
||||
} else {
|
||||
this.options.forEach(item => {
|
||||
let first = value[0]
|
||||
item.sChecked = first && first == item.value
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
@ -143,7 +131,7 @@ export default {
|
||||
initChecked() {
|
||||
let groupContext = this.groupContext
|
||||
if (!groupContext) {
|
||||
return this.check
|
||||
return this.checked
|
||||
}else if (groupContext.multiple) {
|
||||
return groupContext.defaultValues.indexOf(this.value) > -1
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user