【fix-bug78062】-多选组件有些不能勾选的bug

This commit is contained in:
fengchenchen
2023-10-25 15:04:41 +08:00
parent cc25dfc06d
commit affe24ff12
+1 -1
View File
@@ -1,6 +1,6 @@
<template>
<a-checkbox-group v-if="tagType=='checkbox'" @change="onChange" :value="arrayValue" :disabled="disabled">
<a-checkbox v-for="(item, key) in dictOptions" :key="key" :value="item.value">{{ item.text || item.label }}</a-checkbox>
<a-checkbox v-for="item in dictOptions" :key="'a_checkbox_'+ item.value" :value="item.value">{{ item.text || item.label }}</a-checkbox>
</a-checkbox-group>
<a-select