hookehuyr

fix 补充信息显示优化

<!--
* @Date: 2022-08-30 11:34:19
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-06-14 10:12:00
* @LastEditTime: 2024-07-19 16:55:56
* @FilePath: /data-table/src/components/CheckboxField/index.vue
* @Description: 多项选择控件
-->
......@@ -113,7 +113,7 @@ onMounted(() => {
arr.forEach(item => {
if (item.includes(':')) {
let parts = item.split(': ');
obj[parts[0]] = parseInt(parts[1]);
obj[parts[0]] = (parts[1]);
}
});
checkbox_value.value = titles;
......