fix(门诊预约): 修复取消预约次数限制逻辑错误

修复取消预约次数限制逻辑与配置不一致的问题,使用配置值而非硬编码值进行校验。同时优化诊前退号检查逻辑,增加病历记录、费用明细、班段结束时间等校验条件,防止不当退号操作。

refactor(检验申请): 优化检验申请单列表查询SQL
从明细表聚合项目名称和金额,避免直接查询申请单表导致的数据重复问题。
This commit is contained in:
wangjian963
2026-04-08 17:50:22 +08:00
parent 6fedfe1e40
commit f87afba566
4 changed files with 173 additions and 19 deletions

View File

@@ -1,9 +1,8 @@
<template>
<el-container class="inspection-application-container">
<!-- 顶部操作按钮区 - 隐藏按钮移到卡片标题行 -->
<el-header class="top-action-bar" height="0" style="overflow: hidden">
</el-header>
<!-- 占位 header保持 el-container 布局结构 -->
<el-header height="0" />
<!-- 检验信息表格区 -->
<el-main class="inspection-section" style="width: 100%; max-width: 100%">
@@ -1710,14 +1709,6 @@ defineExpose({
padding: 0;
}
/* Bug#334: 顶部操作按钮区 - 隐藏原区域,按钮移到卡片标题行 */
.top-action-bar {
height: 0 !important;
overflow: hidden !important;
border: none !important;
padding: 0 !important;
}
/* 表格卡片标题行:标题在左,按钮在右 */
.table-card-header-bar {
display: flex;
@@ -2473,10 +2464,6 @@ defineExpose({
display: none;
}
.top-action-bar {
padding: 0 10px;
}
.action-buttons {
flex-direction: column;
gap: 5px;