feat: 新增票据夹模块并优化 OCR 与员工画像服务

后端新增票据夹端点、数据模型和服务模块,优化 OCR 端点
Schema 和附件操作逻辑,完善员工行为画像服务和辅助函数,
前端新增票据夹视图和服务层,优化文档中心样式和侧边栏导
航,完善员工画像详情弹窗和权限控制,补充单元测试。
This commit is contained in:
caoxiaozhu
2026-05-29 14:51:18 +08:00
parent 678f64d772
commit 4c59941ec6
33 changed files with 2855 additions and 551 deletions

View File

@@ -440,13 +440,13 @@ watch(
.profile-tags-panel {
grid-template-rows: auto minmax(0, 1fr);
align-content: start;
align-content: stretch;
min-height: 352px;
}
.profile-radar-panel {
grid-template-rows: auto minmax(0, 1fr) auto;
align-content: start;
align-content: stretch;
min-height: 352px;
}
@@ -477,6 +477,15 @@ watch(
.profile-panel-empty {
margin: 0;
padding: 18px 12px;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
align-self: stretch;
justify-self: stretch;
box-sizing: border-box;
min-height: 100%;
border: 1px dashed #cbd5e1;
border-radius: 4px;
background: #f8fafc;
@@ -487,10 +496,12 @@ watch(
text-align: center;
}
.profile-tags-panel > .profile-panel-empty {
min-height: 284px;
}
.profile-radar-empty {
min-height: 308px;
display: grid;
place-items: center;
}
.profile-operation-copy strong {

View File

@@ -156,9 +156,9 @@ const sidebarMeta = {
overview: { label: '分析看板' },
workbench: { label: '个人工作台' },
documents: { label: '单据中心' },
budget: { label: '预算中心' },
policies: { label: '知识管理' },
audit: { label: '规则中心' },
budget: { label: '预算编制' },
policies: { label: '财务政策' },
audit: { label: '规则管理' },
digitalEmployees: { label: '数字员工' },
employees: { label: '员工管理' },
settings: { label: '系统设置' }