Merge pull request #1542 from dataease/pr@dev@fix_radio_cancel

fix: 下拉列表单选框不能取消
This commit is contained in:
fit2cloud-chenyw 2021-12-28 17:02:10 +08:00 committed by GitHub
commit b44ccef5fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,9 @@
<div v-else class="radio-group-container">
<el-radio-group v-model="value" @change="changeRadioBox">
<el-radio v-for="(item, index) in datas" :key="index" :label="item.id">{{ item.id }}</el-radio>
<el-radio v-for="(item, index) in datas" :key="index" :label="item.id" @click.native.prevent="testChange(item)">
<span>{{ item.id }}</span>
</el-radio>
</el-radio-group>
</div>
@ -209,6 +211,10 @@ export default {
this.checkAll = checkedCount === this.datas.length
this.isIndeterminate = checkedCount > 0 && checkedCount < this.datas.length
this.changeValue(values)
},
testChange(item) {
this.value = this.value === item.id ? null : item.id
this.changeRadioBox(this.value)
}
}