The checkbox of bootstrapTable is selectable according to the condition setting

                      {
                            checkbox: true,
                            formatter: function(value, row, index) {
                                if (row.stpt_status != "已结清") {
                                    return {
                                        disabled: false,
                                    }
                                } else {
                                    return {
                                        disabled: true,
                                    }
                                }
                            }
                        }

 

Guess you like

Origin blog.csdn.net/qq_37514029/article/details/103696095