mirror of https://gitee.com/y_project/RuoYi.git
新增表格参数(是否显示全屏按钮showFullscreen)
parent
14bb9f3cba
commit
cb32d5cc90
File diff suppressed because one or more lines are too long
|
@ -900,6 +900,16 @@ label {
|
||||||
z-index:100;
|
z-index:100;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 表格全屏样式 **/
|
||||||
|
.bootstrap-table.fullscreen {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1050;
|
||||||
|
width: 100%!important;
|
||||||
|
background: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
/** 表格树样式 **/
|
/** 表格树样式 **/
|
||||||
.bootstrap-tree-table .treetable-indent {width:16px; height: 16px; display: inline-block; position: relative;}
|
.bootstrap-tree-table .treetable-indent {width:16px; height: 16px; display: inline-block; position: relative;}
|
||||||
.bootstrap-tree-table .treetable-expander {width:16px; height: 16px; display: inline-block; position: relative; cursor: pointer;}
|
.bootstrap-tree-table .treetable-expander {width:16px; height: 16px; display: inline-block; position: relative; cursor: pointer;}
|
||||||
|
|
|
@ -105,6 +105,7 @@ var table = {
|
||||||
showToggle: options.showToggle, // 是否显示详细视图和列表视图的切换按钮
|
showToggle: options.showToggle, // 是否显示详细视图和列表视图的切换按钮
|
||||||
showExport: options.showExport, // 是否支持导出文件
|
showExport: options.showExport, // 是否支持导出文件
|
||||||
showHeader: options.showHeader, // 是否显示表头
|
showHeader: options.showHeader, // 是否显示表头
|
||||||
|
showFullscreen: options.showFullscreen, // 是否显示全屏按钮
|
||||||
uniqueId: options.uniqueId, // 唯 一的标识符
|
uniqueId: options.uniqueId, // 唯 一的标识符
|
||||||
clickToSelect: options.clickToSelect, // 是否启用点击选中行
|
clickToSelect: options.clickToSelect, // 是否启用点击选中行
|
||||||
singleSelect: options.singleSelect, // 是否单选checkbox
|
singleSelect: options.singleSelect, // 是否单选checkbox
|
||||||
|
|
Loading…
Reference in New Issue