The problem of data Table in layui

cannot get the data object bound to the table record.
Why do you click the button in the camp check box to call back the form.on function instead of table.on??

Does

have anything to do with the rendering of table?

            //
            table.on("checkbox(check_is_business)", function(obj){
                console.log(obj)
            });
            form.on("checkbox(check_is_business)", function(obj){
                selectedStore = new Vue({
                    el: "-sharpdiv_add_store",
                    data: {
                        company_id:"",
                        store_name: "",
                        store_manager: "",
                        address: "",
                        is_business: true
                    }
                });
                var selectRecord = $(this);
                selectedStore.$data = obj.data;
                updateStore(selectedStore);
            });
Mar.30,2021
Menu