hookehuyr

fix 修复补充信息填写逻辑

<!--
* @Date: 2022-08-30 11:34:19
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-06-13 18:38:10
* @LastEditTime: 2024-06-14 10:12:00
* @FilePath: /data-table/src/components/CheckboxField/index.vue
* @Description: 多项选择控件
-->
......@@ -134,6 +134,7 @@ onMounted(() => {
checkbox_value.value.forEach(x => {
if (item.value === x) {
item.checked = true;
affix_value.value[item.value] = item.affix ? `${item.title}: ${item.affix}` : '';
}
})
});
......