feat: 优化差旅报销预审流程与个人工作台 UI 体系

- 完善 user_agent_application 申请差旅报销预审槽位与消息组装
- 增强预算助理报告与风险建议卡片交互
- 重构登录页视觉样式与移动端响应式适配
- 优化个人工作台、文档中心、政策中心、员工管理等页面布局
- 拆分 travelRequestDetailPreReviewModel 为 advice/submit 模型
- 补充报销草稿、风险复核、Item Sync 与模板执行器测试覆盖
This commit is contained in:
caoxiaozhu
2026-06-02 14:01:51 +08:00
parent 92444e7eae
commit ca691f3ee0
107 changed files with 5663 additions and 1542 deletions

View File

@@ -33,7 +33,8 @@ export function useAppShell() {
files: [],
conversation: null,
scope: null,
sessionType: ''
sessionType: '',
budgetContext: null
})
const smartEntrySessionId = ref(0)
const smartEntryRevealToken = ref(0)
@@ -183,7 +184,8 @@ export function useAppShell() {
files: [],
conversation: null,
scope: null,
sessionType: ''
sessionType: '',
budgetContext: null
}
smartEntrySessionId.value += 1
}
@@ -337,7 +339,10 @@ export function useAppShell() {
files: Array.isArray(payload.files) ? payload.files : [],
conversation,
scope,
sessionType
sessionType,
budgetContext: payload.budgetContext && typeof payload.budgetContext === 'object'
? payload.budgetContext
: null
}
smartEntrySessionId.value += 1
}
@@ -358,7 +363,7 @@ export function useAppShell() {
return
}
smartEntryOpen.value = false
toast(`${claimNo || '该'}单据已完成 AI预审${approvalStage ? `,当前节点:${approvalStage}` : ',并已提交审批'}`)
toast(`${claimNo || '该'}单据已提交审批${approvalStage ? `,当前节点:${approvalStage}` : ''}`)
router.push({ name: 'app-documents' })
return
}