1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- @import "../../../../../../src/theme.less";
- :host{
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- ::ng-deep .ant-table-footer{
- padding: 16px 0;
- width: calc(100% - 15px);
- font-weight: bold;
- }
- tr, th{
- text-align: center;
- }
- .searchDataWrap{
- display: flex;
- align-items: center;
- justify-content: space-between;
- .searchData{
- padding: 16px;
- display: flex;
- align-items: center;
- .searchDataItem{
- margin-right: 24px;
- .label{
- font-size: 16px;
- }
- .selectItem{
- width: 224px;
- }
- }
- }
- .operation{
- margin-right: 16px;
- display: flex;
- align-items: center;
- cursor: pointer;
- .icon_transport{
- margin-right: 16px;
- font-size: 24px;
- }
- .btn{
- &.default{
- height: 32px;
- line-height: 32px;
- min-width: 70px;
- }
- }
- }
- }
- .table{
- margin: 0 8px;
- }
-
- .tableWrap{
- // margin: 0 8px;
- overflow-x: auto;
- .footTable, tbody{
- td{
- width: 100px;
- max-width: 100px;
- &.width150{
- width: 150px;
- max-width: 150px;
- }
- }
- }
- }
-
- .moreFilter{
- margin-bottom: 16px;
- span{
- margin-left: 16px;
- color: @primary-color;
- }
- }
- .pagination{
- padding: 16px;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- }
|