layui.use(['customSelect'], function() {更多请移步至码云 https://gitee.com/jinxin911821/customSselect
const select = layui.customSelect
select.render({
el: 'searchBox',
data: list,
checkbox: true,
checked: function (obj) {
console.log(obj)
//obj.value 已选数据的title
//obj.data 已选数据
}
})
})