You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
720 B
22 lines
720 B
import Normal from './normal'; |
|
export default class Small extends Normal { |
|
head = 45; |
|
aside = 160; |
|
size = 'small'; //总体尺寸 |
|
fontSize = '14px'; //总体字体尺寸 |
|
titleSize = '16px'; //标题字体尺寸 |
|
headIconSize = '16px'; //头部图标尺寸 |
|
headHeight = '45px'; //头部高度 |
|
closeTop = '35px'; //展开收起菜单按钮 |
|
headMenuWidth = '350px'; //头部右侧菜单宽度 |
|
asideWidth = '160px'; //左侧菜单宽度 |
|
|
|
menuIconSize = '16px'; |
|
|
|
searchRowHeight = '35px'; //表格查询行高 |
|
searchRowPad = '7px'; //查询行内间距 |
|
searchMargin = '10px'; //查询元素水平间距 |
|
searchWidth = '150px'; //查询元素默认宽度 |
|
|
|
pageHeight = 28; //分页插件高度 |
|
}
|
|
|