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.
51 lines
664 B
51 lines
664 B
2 years ago
|
.box {
|
||
|
box-sizing: border-box;
|
||
|
padding: 16px;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
.searchbox {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
margin-bottom: 16px;
|
||
|
|
||
|
.search {
|
||
|
display: flex;
|
||
|
|
||
|
nz-tree-select {
|
||
|
text-align: left;
|
||
|
width: 220px;
|
||
|
margin-right: 12px;
|
||
|
}
|
||
|
|
||
|
nz-range-picker {
|
||
|
width: 300px;
|
||
|
margin-right: 12px;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
margin-right: 12px;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.table {
|
||
|
margin-bottom: 16px;
|
||
|
}
|
||
|
|
||
|
.echartsbox {
|
||
|
width: 100%;
|
||
|
height: 320px;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
|
||
|
#echarts {
|
||
|
overflow-x: auto;
|
||
|
overflow-y: hidden;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|