优化
This commit is contained in:
parent
9e18137be8
commit
088a427770
@ -64,9 +64,27 @@
|
||||
}
|
||||
|
||||
|
||||
// ::-webkit-scrollbar {
|
||||
// width: 0 !important;
|
||||
// }
|
||||
// ::-webkit-scrollbar {
|
||||
// width: 0 !important;height: 0;
|
||||
// }
|
||||
|
||||
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
|
||||
::-webkit-scrollbar
|
||||
{
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background: #409EFF;
|
||||
}
|
||||
|
||||
/*定义滚动条轨道 内阴影+圆角*/
|
||||
::-webkit-scrollbar-track
|
||||
{
|
||||
-webkit-box-shadow: inset 0 0 2px rgba(231, 231, 231, 0.3);
|
||||
border-radius: 1px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
/*定义滑块 内阴影+圆角*/
|
||||
::-webkit-scrollbar-thumb
|
||||
{
|
||||
border-radius: 1px;
|
||||
-webkit-box-shadow: inset 0 0 2px #409EFF;
|
||||
background: #409EFF;
|
||||
}
|
||||
@ -256,6 +256,7 @@ export default {
|
||||
props: {
|
||||
value: 'startId',
|
||||
label: 'time',
|
||||
expandTrigger: 'hover',
|
||||
level: true
|
||||
},
|
||||
tableData: [],
|
||||
|
||||
@ -120,7 +120,8 @@ export default {
|
||||
//
|
||||
props: {
|
||||
value: 'startId',
|
||||
label: 'time'
|
||||
label: 'time',
|
||||
expandTrigger: 'hover'
|
||||
},
|
||||
// 考核人数报表持有类
|
||||
option: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user