外包风险评估系统:领域引擎+前端+服务端持久化与生产部署

- 确定性领域引擎(分类/评分/分级/红线/费用/裁决)+LLM(通义千问)语言理解
- 6步评估向导、服务端草稿持久化(跨设备/编辑草稿保护)
- 工作流(草稿→风控→管理层)、RBAC、报告导出、校准、客户/费率/红线/最低工资管理
- 专业图标体系替换全部emoji、看板美化
- 生产化:API_BASE可配置(同源反代)、auth密钥惰性读取修复RBAC
- 444单测+204前端测试+51 e2e
This commit is contained in:
freedakgmail
2026-06-13 01:06:39 +08:00
commit c670b9e454
404 changed files with 61820 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/**
* 评估持久化层模块聚合导出(Req 17)。
*
* 已实现 `save` 持久化与元数据(Req 17.1, 17.2)、`reassess` 复评(Req 17.3, 17.4)、
* `compare` 跨项目对比(Req 17.5, 17.6)与 `search` 历史检索(Req 17.7)。
*/
export * from './errors.js';
export * from './store.js';
export * from './pg.js';
export * from './save.js';
export * from './reassess.js';
export * from './compare.js';
export * from './search.js';
export * from './scenarios.js';
export * from './rateTables.js';
export * from './actuals.js';
export * from './redlineRules.js';
export * from './customers.js';
export * from './minWages.js';
export * from './drafts.js';
export * from './settings.js';
export * from './regionRates.js';
export * from './rejectReasons.js';
export * from './dashboard.js';
export * from './similar.js';
export * from './attachments.js';
export * from './experience.js';