|
|
|
|
@ -307,22 +307,65 @@
|
|
|
|
|
|
|
|
|
|
// 表格卡片
|
|
|
|
|
.tableCard {
|
|
|
|
|
background: rgba(255, 255, 255, 0.95);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
// box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
|
|
|
|
// border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
// backdrop-filter: blur(10px);
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
|
|
.cardTitle {
|
|
|
|
|
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
color: white;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
// background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
color: rgba(0, 0, 0, 1);
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
margin: -20px -20px 20px -20px;
|
|
|
|
|
border-radius: 12px 12px 0 0;
|
|
|
|
|
border-bottom: 2px solid #e8f4fd;
|
|
|
|
|
margin: -20px -20px 10px -20px;
|
|
|
|
|
// border-radius: 12px 12px 0 0;
|
|
|
|
|
// border-bottom: 2px solid #e8f4fd;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.titleButtons {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.titleAddButton {
|
|
|
|
|
background: rgba(0, 212, 138, 1);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
height: 32px;
|
|
|
|
|
padding: 4px 15px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.titleReportButton {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #666;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
height: 32px;
|
|
|
|
|
padding: 4px 15px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
border-color: #40a9ff;
|
|
|
|
|
color: #40a9ff;
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -388,64 +431,54 @@
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tableHeader {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
|
|
|
|
|
.searchSection {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actionButtons {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 表格样式优化
|
|
|
|
|
:global(.ant-table) {
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
// border-radius: 8px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
|
// box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: rgba(0, 0, 0, 0.85);
|
|
|
|
|
|
|
|
|
|
:global(.ant-table-thead > tr > th) {
|
|
|
|
|
background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
|
|
|
|
|
border-bottom: 2px solid #dee2e6;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #495057;
|
|
|
|
|
// background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
|
|
|
|
|
// border-bottom: 2px solid #dee2e6;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.ant-table-tbody > tr) {
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
// transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.ant-table-tbody > tr > td) {
|
|
|
|
|
border-bottom: 1px solid #f0f0f0;
|
|
|
|
|
// border-bottom: 1px solid #f0f0f0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 分页器样式
|
|
|
|
|
:global(.ant-pagination) {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
// :global(.ant-pagination) {
|
|
|
|
|
// margin-top: 20px;
|
|
|
|
|
// text-align: center;
|
|
|
|
|
|
|
|
|
|
:global(.ant-pagination-item) {
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
// :global(.ant-pagination-item) {
|
|
|
|
|
// border-radius: 6px;
|
|
|
|
|
// border: 1px solid #d9d9d9;
|
|
|
|
|
// transition: all 0.3s ease;
|
|
|
|
|
|
|
|
|
|
&.ant-pagination-item-active {
|
|
|
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
border-color: #667eea;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.ant-pagination-prev),
|
|
|
|
|
:global(.ant-pagination-next) {
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// &.ant-pagination-item-active {
|
|
|
|
|
// background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
// border-color: #667eea;
|
|
|
|
|
// color: white;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// :global(.ant-pagination-prev),
|
|
|
|
|
// :global(.ant-pagination-next) {
|
|
|
|
|
// border-radius: 6px;
|
|
|
|
|
// border: 1px solid #d9d9d9;
|
|
|
|
|
// transition: all 0.3s ease;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
}
|