选择方法配置页面
parent
3f90be3a04
commit
faaccaf82a
@ -1,5 +1,75 @@
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
padding-left: 5px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
background-color: #f5f5f5;
|
||||
|
||||
.leftMenu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-shrink: 0;
|
||||
background-color: #fff;
|
||||
|
||||
.menuItem {
|
||||
width: 140px;
|
||||
height: 50px;
|
||||
background-color: #FFFFFF;
|
||||
border-radius: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
padding-left: 20px;
|
||||
|
||||
.menuText {
|
||||
font-size: 14px;
|
||||
color: #999999;
|
||||
font-weight: 400;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.activeIndicator {
|
||||
position: absolute;
|
||||
left: 3px;
|
||||
width: 17.35px;
|
||||
height: 1.98px;
|
||||
border-radius: 6px;
|
||||
background-color: #009D6F;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
&.active {
|
||||
background-color: #D4FFEC;
|
||||
.menuText {
|
||||
color: #009D6F;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover:not(.active) {
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.rightContent {
|
||||
flex: 1;
|
||||
border-radius: 4px;
|
||||
overflow: auto;
|
||||
.contentPlaceholder {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 18px;
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -0,0 +1,6 @@
|
||||
import React from 'react';
|
||||
import './LedgerCenter.less';
|
||||
|
||||
const LedgerCenter = () => <div className="ledger-center">待开发三个字</div>;
|
||||
|
||||
export default LedgerCenter;
|
||||
@ -0,0 +1,6 @@
|
||||
.ledger-center {
|
||||
font-size: 20px;
|
||||
color: #888;
|
||||
text-align: center;
|
||||
padding: 40px 0;
|
||||
}
|
||||
Loading…
Reference in New Issue