feat: 添加分页组件 用户表格的编辑框的正确打开

This commit is contained in:
zhangyu
2021-06-11 16:59:16 +08:00
parent 0e715f090f
commit ffc7652fc5
10 changed files with 360 additions and 9 deletions

View File

@@ -2,4 +2,5 @@
@import './theme';
@import './common';
@import './rightBoxCommon';
@import './tableCommon';
@import './tableCommon';
@import '../stylus/index.scss';

View File

@@ -338,7 +338,7 @@
}
}
/* end--覆盖el-table边框、gutter等样式 */
.pagination-bottom {
.cn-pagination{
position: absolute;
bottom: 8px;
height: 48px;
@@ -379,3 +379,11 @@
height: 1px;
background-color: white;
}
.col-resize-area {
position: absolute;
top: 0;
right: 0;
width: 4px;
height: 100%;
cursor: col-resize;
}

View File

@@ -56,6 +56,9 @@ $--color-warning: $--color-primary; //全局警告橙色
$--color-suspended: #9e9c98; //全局停用色灰色
$--color-monitor: #98AEC5; //全局停用色灰色
$global-text-color-active: $--color-primary; // 全局文字active字色
$content-right-background-color: #f9f9f9; //右侧背景色
/** 改变 icon 字体路径变量并引入element-ui变量文件 **/
$--font-path: '~element-plus/lib/theme-chalk/fonts';
@import "~element-plus/packages/theme-chalk/src/index";