uniapp cl-checkbox-group组件选择后前面多个逗号处理方式
文章描述:
cl-checkbox-group.vue 找到以下代码 if (index >= 0) […]
cl-checkbox-group.vue
找到以下代码
if (index >= 0) {
list.splice(index, 1);
} else {
list.push(label);
}
this.$emit("input", list);
this.$emit("change", list);
上面添加
// 处理选择后前面有逗号bug
if(Array.isArray(list))
{
list.forEach((item,i)=>{
if(item == "")
{
list.splice(i, 1);
}
})
}
发布时间:2023/12/14
发表评论