fastadmin隐藏右上角的搜索按钮及其导出等

发布时间 2023-06-03 09:56:48作者: 温柔的风

 想要隐藏这些按钮,有两种方式

一、直接html文件里修改

data-show-export="false" data-show-toggle="false" data-show-columns="false"
data-search="false" data-common-Search="false"

 二、在bootstarpTable初始化的时候设定

 // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                columns: [columnss],
                //启用固定列
                fixedColumns: true,
                //固定右侧列数
                fixedRightNumber: 1,
                showToggle:false,
                showColumns:false,
                showExport:false,
                searchFormVisible: true,
                search:false,
                showSearch: false
            });