feat(finance): 实现发票管理页面与子页面

This commit is contained in:
2026-03-04 15:58:08 +08:00
parent 15d4272d1f
commit 5fd5d0d2f2
28 changed files with 3322 additions and 157 deletions

View File

@@ -0,0 +1,62 @@
/**
* 文件职责:发票记录表格样式。
*/
.fi-table-card {
overflow: hidden;
background: #fff;
border: 1px solid #f0f0f0;
border-radius: 10px;
.ant-table-wrapper {
.ant-table-thead > tr > th {
font-size: 13px;
white-space: nowrap;
}
.ant-table-tbody > tr > td {
font-size: 13px;
vertical-align: middle;
}
}
.ant-pagination {
margin: 14px 16px;
}
}
.fi-company-cell {
display: flex;
flex-direction: column;
gap: 2px;
.fi-applicant {
font-weight: 500;
color: rgb(0 0 0 / 88%);
}
.fi-company {
font-size: 12px;
color: rgb(0 0 0 / 45%);
}
}
.fi-amount {
font-weight: 600;
color: rgb(0 0 0 / 88%);
}
.fi-time {
font-size: 12px;
color: rgb(0 0 0 / 45%);
white-space: nowrap;
}
.fi-link-action {
padding-inline: 0;
}
.fi-action-wrap {
display: inline-flex;
gap: 8px;
align-items: center;
}