feat(order-closed-loop): 医嘱执行闭环追踪
- AppService: 添加 getTrace(adviceId) 查询医嘱全生命周期时间轴
- AppService: 添加 getStatisticsWithParams(deptId, startDate, endDate) 执行统计
- Controller: 添加 GET /trace/{adviceId} 和 GET /statistics/summary 端点
- 前端: 新建 OrderExecuteTrace.vue 时间轴视图 + 执行统计面板
- API: 添加 getOrderExecuteTrace 和 getExecuteStatistics 接口
This commit is contained in:
@@ -34,3 +34,20 @@ export function getClosedLoopStatistics(params) {
|
||||
params: params
|
||||
})
|
||||
}
|
||||
|
||||
// 医嘱执行追踪
|
||||
export function getOrderExecuteTrace(adviceId) {
|
||||
return request({
|
||||
url: '/api/v1/order-closed-loop/trace/' + adviceId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 执行统计(含科室/时间段)
|
||||
export function getExecuteStatistics(params) {
|
||||
return request({
|
||||
url: '/api/v1/order-closed-loop/statistics/summary',
|
||||
method: 'get',
|
||||
params: params
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user