refactor: 财务模块卡片头部重构为单行功能区 + 表格增加状态列

- 卡片头部简化为单行: 视图标签 | 筛选:状态/月份/季度下拉 + 新增按钮
- 状态筛选从标签按钮改为统一风格下拉框(自定义SVG箭头)
- 下拉框字体/高度与视图标签 btn-sm 完全对齐
- 表格增加状态列(已签约/流程中/待签约,分色显示)
- 季度视图 p-4 padding 修复
This commit is contained in:
mac
2026-07-03 19:06:54 +08:00
parent 493150cb27
commit ff7eb19d5d
6 changed files with 313 additions and 42 deletions

View File

@@ -94,6 +94,33 @@ body {
border-bottom-color: #1d4ed8;
}
/* 详情弹窗固定高度tab 切换不抖动 */
#financeModal > div {
height: 650px;
display: flex;
flex-direction: column;
}
#financeModal .finance-tabs { flex-shrink: 0; }
#financeModal form {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
overflow: hidden;
}
#financeModal .finance-tab-body {
flex: 1;
min-height: 0;
overflow-y: auto;
padding: 32px;
}
#financeModal .finance-form-actions {
flex-shrink: 0;
background: #fff;
padding: 12px 32px 8px;
border-top: 1px solid #f1f5f9;
}
/* 项目统一卡片布局 */
.project-board {
background: #fff;