feat: 生产部署 + 会议全链路 (执行方分配/费用结算/签到脱敏/H5相机)

- 生产 nginx 三路径: ry-vue3 /hg/, ry-h5 /camera/, API /hg-api, .env 分环境
- 签约链接/摄像头 base-url 走 yml, 不再硬编码 /hg 与 localhost
- 新增 biz_project_executor_assign (镜像 sponsor_assign) 执行方项目级分配
- 会议费用后台汇总 FeeCalcScheduler + 结算回写项目金额 + 状态流转调度
- 签到表拍照高斯模糊脱敏 extra_oss_url, 新增 PosterService/StageDeriver
- 清理 biz_support_intent 旧表 (6 Java/XML 删除)
- ry-h5 相机黑屏修复: 显式 video.play() + 动态 apiBase 上传
- 资源: simhei 字体 / logo.png / qrcode_1.png / favicon.ico

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
郭庆泰
2026-08-24 01:00:09 +08:00
co-authored by Claude
parent 80a276e661
commit 904e28710f
123 changed files with 6008 additions and 1706 deletions
+8 -4
View File
@@ -94,11 +94,11 @@ async function loadInitialUnread() {
/** 各角色点 bell 跳到自己的消息页 */
const NOTICE_PATH = {
admin: '/admin/workbench', // admin 暂未建独立消息页, 落工作台
manager: '/manager/workbench', // manager 同上 (Phase 7 补 /manager/messages)
admin: '/admin/messages',
manager: '/manager/messages',
doctor: '/doctor/messages',
executor: '/executor/overview', // executor 同 admin/manager 暂用工作台
sponsor: '/sponsor/home' // sponsor 同上
executor: '/executor/messages',
sponsor: '/sponsor/messages'
}
function goNotice() {
const p = NOTICE_PATH[role.value] || '/'
@@ -177,6 +177,7 @@ const MENU = {
{ path: '/admin/special-plan', title: '专项计划管理', icon: Compass },
{ path: '/admin/labor-protocol', title: '劳务协议配置', icon: Document }
]},
{ path: '/admin/messages', title: '消息通知', icon: Bell },
{ path: '/admin/account', title: '账号信息', icon: User }
],
manager: [
@@ -189,6 +190,7 @@ const MENU = {
{ path: '/manager/executor-orgs', title: '服务机构管理', icon: OfficeBuilding },
{ path: '/manager/support-intent', title: '支持意向', icon: Tickets },
{ path: '/manager/exec-intent', title: '执行意向', icon: Tickets },
{ path: '/manager/messages', title: '消息通知', icon: Bell },
{ path: '/manager/accounts', title: '账号管理', icon: Setting }
],
doctor: [
@@ -206,6 +208,7 @@ const MENU = {
{ path: '/executor/projects', title: '项目列表', icon: Document },
{ path: '/executor/people', title: '人员管理', icon: User, requireMain: true },
{ path: '/executor/labor', title: '劳务凭证', icon: EditPen },
{ path: '/executor/messages', title: '消息通知', icon: Bell },
{ path: '/executor/account', title: '账号信息', icon: Setting }
],
sponsor: [
@@ -213,6 +216,7 @@ const MENU = {
{ path: '/sponsor/my-projects', title: '我的项目', icon: Document },
{ path: '/sponsor/meetings', title: '会议列表', icon: Calendar },
{ path: '/sponsor/people', title: '人员管理', icon: User, requireMain: true },
{ path: '/sponsor/messages', title: '消息通知', icon: Bell },
{ path: '/sponsor/account', title: '账号信息', icon: Setting }
]
}