549【住院医生站-临床医嘱-检验】打开“检验申请单”弹窗获取项目列表响应极其缓慢

546 【患者管理】-【患者列表】-【新增患者】,新增患者,保存成功,但没有数据
536 [门诊手术安排]“手术申请查询”弹窗底部,分页组件与界底部元素重叠,影响操作。
This commit is contained in:
wangjian963
2026-05-20 09:45:33 +08:00
parent d9c975a950
commit 3394aa54d7
10 changed files with 180 additions and 162 deletions

View File

@@ -147,6 +147,6 @@ public interface IDoctorStationAdviceAppService {
*/ */
IPage<SurgeryItemDto> getSurgeryPage(Long organizationId, Integer pageNo, Integer pageSize, String searchKey); IPage<SurgeryItemDto> getSurgeryPage(Long organizationId, Integer pageNo, Integer pageSize, String searchKey);
IPage<SurgeryItemDto> getExaminationPage(Long organizationId, Integer pageNo, Integer pageSize, String searchKey); IPage<SurgeryItemDto> getExaminationPage(Long organizationId, Integer pageNo, Integer pageSize, String searchKey, String categoryCode);
} }

View File

@@ -2571,12 +2571,13 @@ public class DoctorStationAdviceAppServiceImpl implements IDoctorStationAdviceAp
} }
@Override @Override
public IPage<SurgeryItemDto> getExaminationPage(Long organizationId, Integer pageNo, Integer pageSize, String searchKey) { public IPage<SurgeryItemDto> getExaminationPage(Long organizationId, Integer pageNo, Integer pageSize, String searchKey, String categoryCode) {
IPage<SurgeryItemDto> result = doctorStationAdviceAppMapper.getExaminationPage( IPage<SurgeryItemDto> result = doctorStationAdviceAppMapper.getExaminationPage(
new Page<>(pageNo, pageSize), new Page<>(pageNo, pageSize),
PublicationStatus.ACTIVE.getValue(), PublicationStatus.ACTIVE.getValue(),
organizationId, organizationId,
searchKey); searchKey,
categoryCode);
return result; return result;
} }

View File

@@ -226,8 +226,9 @@ public class DoctorStationAdviceController {
@RequestParam(value = "organizationId", required = false) Long organizationId, @RequestParam(value = "organizationId", required = false) Long organizationId,
@RequestParam(value = "pageNo", defaultValue = "1") Integer pageNo, @RequestParam(value = "pageNo", defaultValue = "1") Integer pageNo,
@RequestParam(value = "pageSize", defaultValue = "500") Integer pageSize, @RequestParam(value = "pageSize", defaultValue = "500") Integer pageSize,
@RequestParam(value = "searchKey", defaultValue = "") String searchKey) { @RequestParam(value = "searchKey", defaultValue = "") String searchKey,
return R.ok(iDoctorStationAdviceAppService.getExaminationPage(organizationId, pageNo, pageSize, searchKey)); @RequestParam(value = "categoryCode", defaultValue = "23") String categoryCode) {
return R.ok(iDoctorStationAdviceAppService.getExaminationPage(organizationId, pageNo, pageSize, searchKey, categoryCode));
} }
} }

View File

@@ -203,6 +203,7 @@ public interface DoctorStationAdviceAppMapper {
IPage<SurgeryItemDto> getExaminationPage(@Param("page") Page<SurgeryItemDto> page, IPage<SurgeryItemDto> getExaminationPage(@Param("page") Page<SurgeryItemDto> page,
@Param("statusEnum") Integer statusEnum, @Param("statusEnum") Integer statusEnum,
@Param("organizationId") Long organizationId, @Param("organizationId") Long organizationId,
@Param("searchKey") String searchKey); @Param("searchKey") String searchKey,
@Param("categoryCode") String categoryCode);
} }

View File

@@ -133,47 +133,13 @@ public class PatientInformationServiceImpl implements IPatientInformationService
@Override @Override
public IPage<PatientBaseInfoDto> getPatientInfo(PatientBaseInfoDto patientBaseInfoDto, String searchKey, public IPage<PatientBaseInfoDto> getPatientInfo(PatientBaseInfoDto patientBaseInfoDto, String searchKey,
Integer pageNo, Integer pageSize, HttpServletRequest request) { Integer pageNo, Integer pageSize, HttpServletRequest request) {
// 获取登录者信息 // 构建基础查询条件
LoginUser loginUser = SecurityUtils.getLoginUser(); LoginUser loginUser = SecurityUtils.getLoginUser();
Long userId = loginUser.getUserId();
Integer tenantId = loginUser.getTenantId().intValue();
// 先构建基础查询条件
QueryWrapper<PatientBaseInfoDto> queryWrapper = HisQueryUtils.buildQueryWrapper( QueryWrapper<PatientBaseInfoDto> queryWrapper = HisQueryUtils.buildQueryWrapper(
patientBaseInfoDto, searchKey, new HashSet<>(Arrays.asList(CommonConstants.FieldName.Name, patientBaseInfoDto, searchKey, new HashSet<>(Arrays.asList(CommonConstants.FieldName.Name,
CommonConstants.FieldName.BusNo, CommonConstants.FieldName.PyStr, CommonConstants.FieldName.WbStr)), CommonConstants.FieldName.BusNo, CommonConstants.FieldName.PyStr, CommonConstants.FieldName.WbStr)),
request); request);
// 检查是否是精确ID查询从门诊挂号页面跳转时使用
boolean hasExactIdQuery = (patientBaseInfoDto.getId() != null);
// 只有非精确ID查询时才添加医生患者过滤条件
if (!hasExactIdQuery) {
// 查询当前用户对应的医生信息
LambdaQueryWrapper<com.openhis.administration.domain.Practitioner> practitionerQuery = new LambdaQueryWrapper<>();
practitionerQuery.eq(com.openhis.administration.domain.Practitioner::getUserId, userId);
// 使用list()避免TooManyResultsException异常然后取第一个记录
List<com.openhis.administration.domain.Practitioner> practitionerList = practitionerService.list(practitionerQuery);
com.openhis.administration.domain.Practitioner practitioner = practitionerList != null && !practitionerList.isEmpty() ? practitionerList.get(0) : null;
// 如果当前用户是医生,添加医生患者过滤条件
if (practitioner != null) {
// 查询该医生作为接诊医生ADMITTER, code="1"和挂号医生REGISTRATION_DOCTOR, code="12"的所有就诊记录的患者ID
List<Long> doctorPatientIds = patientManageMapper.getPatientIdsByPractitionerId(
practitioner.getId(),
Arrays.asList(ParticipantType.ADMITTER.getCode(), ParticipantType.REGISTRATION_DOCTOR.getCode()),
tenantId);
if (doctorPatientIds != null && !doctorPatientIds.isEmpty()) {
// 添加患者ID过滤条件 - 注意:这里使用列名而不是表别名
queryWrapper.in("id", doctorPatientIds);
} else {
// 如果没有相关患者,返回空结果
queryWrapper.eq("id", -1); // 设置一个不存在的ID
}
}
// 如果不是医生,查询所有患者
}
IPage<PatientBaseInfoDto> patientInformationPage IPage<PatientBaseInfoDto> patientInformationPage
= patientManageMapper.getPatientPage(new Page<>(pageNo, pageSize), queryWrapper); = patientManageMapper.getPatientPage(new Page<>(pageNo, pageSize), queryWrapper);

View File

@@ -895,7 +895,7 @@
ORDER BY t1.ID, t1.name ASC, t2.ID ASC ORDER BY t1.ID, t1.name ASC, t2.ID ASC
</select> </select>
<!-- 检查项目专用分页查询:仅查检查(23) + 定价,无库存/草稿库存/取药科室等无关逻辑 --> <!-- 检查/检验项目专用分页查询:仅查指定 category_code + 定价,无库存/草稿库存/取药科室等无关逻辑 -->
<select id="getExaminationPage" resultType="com.openhis.web.doctorstation.dto.SurgeryItemDto"> <select id="getExaminationPage" resultType="com.openhis.web.doctorstation.dto.SurgeryItemDto">
SELECT DISTINCT ON (t1.ID) SELECT DISTINCT ON (t1.ID)
t1.ID AS advice_definition_id, t1.ID AS advice_definition_id,
@@ -913,7 +913,7 @@
AND t2.status_enum = #{statusEnum} AND t2.status_enum = #{statusEnum}
AND t2.instance_table = 'wor_activity_definition' AND t2.instance_table = 'wor_activity_definition'
WHERE t1.delete_flag = '0' WHERE t1.delete_flag = '0'
AND t1.category_code = '23' AND t1.category_code = #{categoryCode}
<if test="searchKey != null and searchKey != ''"> <if test="searchKey != null and searchKey != ''">
AND (t1.name ILIKE '%' || #{searchKey} || '%' OR t1.py_str ILIKE '%' || #{searchKey} || '%') AND (t1.name ILIKE '%' || #{searchKey} || '%' OR t1.py_str ILIKE '%' || #{searchKey} || '%')
</if> </if>

View File

@@ -220,3 +220,18 @@ export function getSlotStatusDescription(value) {
export function getSlotStatusClass(status) { export function getSlotStatusClass(status) {
return SlotStatusClassMap[status] || 'status-unbooked'; return SlotStatusClassMap[status] || 'status-unbooked';
} }
/**
* 诊疗项目分类代码(对应后端 ActivityDefCategory 枚举)
* wor_activity_definition.category_code 字段
*/
export const ActivityCategory = {
/** 治疗 */
TREATMENT: '21',
/** 检验 */
PROOF: '22',
/** 检查 */
TEST: '23',
/** 手术 */
PROCEDURE: '24',
};

View File

@@ -17,17 +17,14 @@
style="width: 300px; margin-bottom: 10px" style="width: 300px; margin-bottom: 10px"
> >
<template #append> <template #append>
<el-button @click="handleSearch">搜索</el-button> <el-button @click="handleSearch" :loading="loading">搜索</el-button>
</template> </template>
</el-input> </el-input>
<span v-if="!searchKey" class="total-count"> {{ totalCount }} </span> <span class="total-count"> {{ totalCount }} </span>
<span v-else class="total-count">搜索到 {{ filteredCount }} / {{ totalCount }} </span>
</div> </div>
<el-transfer <el-transfer
v-model="transferValue" v-model="transferValue"
:data="transferData" :data="transferData"
filter-placeholder="项目代码/名称"
filterable
:titles="['未选择', '已选择']" :titles="['未选择', '已选择']"
/> />
</div> </div>
@@ -136,7 +133,8 @@
<script setup name="LaboratoryTests"> <script setup name="LaboratoryTests">
import {getCurrentInstance, nextTick, onMounted, reactive, ref, watch, computed} from 'vue'; import {getCurrentInstance, nextTick, onMounted, reactive, ref, watch, computed} from 'vue';
import {patientInfo} from '../../../store/patient.js'; import {patientInfo} from '../../../store/patient.js';
import {getApplicationList, saveInspection} from './api'; import {getExaminationPage, saveInspection} from './api';
import {ActivityCategory} from '@/utils/medicalConstants';
import {getDepartmentList} from '@/api/public.js'; import {getDepartmentList} from '@/api/public.js';
import {getEncounterDiagnosis} from '../../api.js'; import {getEncounterDiagnosis} from '../../api.js';
import {ElMessage} from 'element-plus'; import {ElMessage} from 'element-plus';
@@ -173,9 +171,8 @@ const skipDeptAutoFill = ref(false);
// 将已加载的全部数据转为 transfer 组件所需的格式 // 将已加载的全部数据转为 transfer 组件所需的格式
const buildTransferData = (records) => { const buildTransferData = (records) => {
return records.map((item) => { return records.map((item) => {
const priceInfo = item.priceList?.[0] || {}; const price = item.price != null ? Number(item.price).toFixed(2) : '0.00';
const price = priceInfo.price != null ? Number(priceInfo.price).toFixed(2) : '0.00'; const unit = item.unitCodeDictText || item.unitCode || '';
const unit = item.unitCode_dictText || item.unitCode || '';
return { return {
adviceDefinitionId: item.adviceDefinitionId, adviceDefinitionId: item.adviceDefinitionId,
orgId: item.orgId, orgId: item.orgId,
@@ -185,7 +182,8 @@ const buildTransferData = (records) => {
}); });
}; };
// 加载全部数据(不分页,一次性拉取) const selectedItemsCache = ref(new Map());
const loadAllData = async () => { const loadAllData = async () => {
if (!patientInfo.value?.inHospitalOrgId) { if (!patientInfo.value?.inHospitalOrgId) {
applicationListAll.value = []; applicationListAll.value = [];
@@ -193,13 +191,12 @@ const loadAllData = async () => {
} }
loading.value = true; loading.value = true;
try { try {
// 使用大 pageSize 一次性拉取所有启用状态的检验类诊疗项目 const res = await getExaminationPage({
const res = await getApplicationList({ pageSize: 100,
pageSize: 9999,
pageNo: 1, pageNo: 1,
categoryCode: '22', categoryCode: ActivityCategory.PROOF,
organizationId: patientInfo.value.inHospitalOrgId, organizationId: patientInfo.value.inHospitalOrgId,
adviceTypes: [3], // 1 药品 2 耗材 3 诊疗 searchKey: searchKey.value,
}); });
if (res.code !== 200) { if (res.code !== 200) {
proxy.$message.error(res.message); proxy.$message.error(res.message);
@@ -208,8 +205,9 @@ const loadAllData = async () => {
} }
applicationListAll.value = res.data?.records || []; applicationListAll.value = res.data?.records || [];
totalCount.value = res.data?.total || 0; totalCount.value = res.data?.total || 0;
// 检验项目列表为异步加载,编辑回显必须在数据就绪后执行,否则已选区一直为空 if (!searchKey.value) {
applyEditTransferSelection() applyEditTransferSelection();
}
} catch (e) { } catch (e) {
proxy.$message.error('获取检验项目列表失败'); proxy.$message.error('获取检验项目列表失败');
applicationListAll.value = []; applicationListAll.value = [];
@@ -218,32 +216,18 @@ const loadAllData = async () => {
} }
}; };
// 根据搜索关键词过滤数据 const transferData = computed(() => buildTransferData(applicationListAll.value));
const filterData = (key) => {
if (!key || key.trim() === '') {
return applicationListAll.value;
}
const lowerKey = key.toLowerCase().trim();
return applicationListAll.value.filter((item) => {
return (
item.adviceName?.toLowerCase().includes(lowerKey) ||
item.pyStr?.toLowerCase().includes(lowerKey) ||
item.adviceBusNo?.toLowerCase().includes(lowerKey)
);
});
};
// transfer 组件实际显示的数据(受搜索词影响)
const transferData = computed(() => buildTransferData(filterData(searchKey.value)));
// 当前显示的条数
const filteredCount = computed(() => filterData(searchKey.value).length);
const getList = async () => { const getList = async () => {
await loadAllData(); await loadAllData();
}; };
let searchTimer = null;
const handleSearch = () => { const handleSearch = () => {
// 搜索时保持已选中的项目不受影响 clearTimeout(searchTimer);
searchTimer = setTimeout(() => {
loadAllData();
}, 300);
}; };
// 编辑初始化标志:避免 applyEditTransferSelection 设置 transferValue 时触发 projectWithDepartment 覆盖 descJson 中的科室值 // 编辑初始化标志:避免 applyEditTransferSelection 设置 transferValue 时触发 projectWithDepartment 覆盖 descJson 中的科室值
const isInitializing = ref(false); const isInitializing = ref(false);
@@ -302,13 +286,17 @@ const projectWithDepartment = (selectProjectIds, type) => {
const arr = []; const arr = [];
// 根据选中的项目id查找对应的项目从全部原始数据中查找 // 根据选中的项目id查找对应的项目从全部原始数据中查找
selectProjectIds.forEach((element) => { selectProjectIds.forEach((element) => {
const searchData = applicationListAll.value.find((item) => { let searchData = applicationListAll.value.find((item) => {
return element == item.adviceDefinitionId; return element == item.adviceDefinitionId;
}); });
if (!searchData) {
searchData = selectedItemsCache.value.get(element);
}
if (searchData) { if (searchData) {
const priceInfo = searchData.priceList?.[0] || {}; const priceInfo = searchData.priceList?.[0] || {};
const price = priceInfo.price != null ? Number(priceInfo.price).toFixed(2) : '0.00'; const price = searchData.price != null ? Number(searchData.price).toFixed(2)
const unit = searchData.unitCode_dictText || searchData.unitCode || ''; : priceInfo.price != null ? Number(priceInfo.price).toFixed(2) : '0.00';
const unit = searchData.unitCodeDictText || searchData.unitCode_dictText || searchData.unitCode || '';
arr.push({ arr.push({
adviceDefinitionId: searchData.adviceDefinitionId, adviceDefinitionId: searchData.adviceDefinitionId,
orgId: searchData.orgId, orgId: searchData.orgId,
@@ -371,6 +359,12 @@ watch(
(newValue) => { (newValue) => {
if (skipDeptAutoFill.value) return; if (skipDeptAutoFill.value) return;
if (isInitializing.value) return; if (isInitializing.value) return;
newValue.forEach((id) => {
if (!selectedItemsCache.value.has(id)) {
const item = applicationListAll.value.find((i) => i.adviceDefinitionId == id);
if (item) selectedItemsCache.value.set(id, item);
}
});
projectWithDepartment(newValue, 1); projectWithDepartment(newValue, 1);
} }
); );
@@ -455,13 +449,14 @@ watch(
} }
) )
// 编辑模式下,项目字典加载完成后重新回显已选项目 // 编辑模式下,项目字典首次加载完成后回显已选项目(搜索刷新不重置)
watch( watch(
() => applicationListAll.value, () => applicationListAll.value,
() => { () => {
if (!props.editData?.requestFormId) return; if (!props.editData?.requestFormId) return;
if (!props.editData.requestFormDetailList?.length) return; if (!props.editData.requestFormDetailList?.length) return;
if (!applicationListAll.value.length) return; if (!applicationListAll.value.length) return;
if (searchKey.value) return;
const selectedIds = []; const selectedIds = [];
props.editData.requestFormDetailList.forEach((detail) => { props.editData.requestFormDetailList.forEach((detail) => {
@@ -486,26 +481,29 @@ const submit = () => {
if (!projectWithDepartment(transferValue.value, 2)) { if (!projectWithDepartment(transferValue.value, 2)) {
return; return;
} }
let applicationListAllFilter = applicationListAll.value.filter((item) => { let applicationListAllFilter = transferValue.value.map((id) => {
return transferValue.value.includes(item.adviceDefinitionId); let item = applicationListAll.value.find((i) => i.adviceDefinitionId == id);
}); if (!item) {
applicationListAllFilter = applicationListAllFilter.map((item) => { item = selectedItemsCache.value.get(id);
}
if (!item) return null;
const priceInfo = item.priceList?.[0] || {};
return { return {
adviceDefinitionId: item.adviceDefinitionId /** 诊疗定义id */, adviceDefinitionId: item.adviceDefinitionId /** 诊疗定义id */,
quantity: 1, // /** 请求数量 */ quantity: 1, // /** 请求数量 */
unitCode: item.priceList[0].unitCode /** 请求单位编码 */, unitCode: item.unitCode || priceInfo.unitCode || '' /** 请求单位编码 */,
unitPrice: item.priceList[0].price /** 单价 */, unitPrice: item.price ?? priceInfo.price ?? 0 /** 单价 */,
totalPrice: item.priceList[0].price /** 总价 */, totalPrice: item.price ?? priceInfo.price ?? 0 /** 总价 */,
positionId: form.targetDepartment || item.positionId, // 用户指定发往科室优先于项目默认执行科室 positionId: form.targetDepartment || item.positionId, // 用户指定发往科室优先于项目默认执行科室
ybClassEnum: item.ybClassEnum, //类别医保编码 ybClassEnum: item.ybClassEnum || '', //类别医保编码
conditionId: item.conditionId, //诊断ID conditionId: item.conditionId || '', //诊断ID
encounterDiagnosisId: item.encounterDiagnosisId, //就诊诊断id encounterDiagnosisId: item.encounterDiagnosisId || '', //就诊诊断id
adviceType: item.adviceType, ///** 医嘱类型 */ adviceType: item.adviceType || 3, ///** 医嘱类型 */
definitionId: item.priceList[0].definitionId, //费用定价主表ID */ definitionId: item.chargeItemDefinitionId || priceInfo.definitionId || '', //费用定价主表ID */
definitionDetailId: item.definitionDetailId, //费用定价子表ID */ definitionDetailId: item.definitionDetailId || priceInfo.definitionDetailId || '', //费用定价子表ID */
accountId: patientInfo.value.accountId, // // 账户id accountId: patientInfo.value.accountId, // // 账户id
}; };
}); }).filter(Boolean);
const params = { const params = {
activityList: applicationListAllFilter, activityList: applicationListAllFilter,
patientId: patientInfo.value.patientId, //患者ID patientId: patientInfo.value.patientId, //患者ID
@@ -520,6 +518,7 @@ const submit = () => {
if (res.code === 200) { if (res.code === 200) {
proxy.$message.success(isEditMode.value ? '修改成功' : res.msg); proxy.$message.success(isEditMode.value ? '修改成功' : res.msg);
transferValue.value = []; transferValue.value = [];
selectedItemsCache.value.clear();
emits('submitOk'); emits('submitOk');
} else { } else {
proxy.$message.error(res.message); proxy.$message.error(res.message);

View File

@@ -207,6 +207,7 @@ import {patientInfo} from '../../../store/patient.js';
import {getDepartmentList} from '@/api/public.js'; import {getDepartmentList} from '@/api/public.js';
import {getEncounterDiagnosis} from '../../api.js'; import {getEncounterDiagnosis} from '../../api.js';
import {getExaminationPage, saveCheckd} from './api'; import {getExaminationPage, saveCheckd} from './api';
import {ActivityCategory} from '@/utils/medicalConstants';
import {ElMessage, ElMessageBox} from 'element-plus'; import {ElMessage, ElMessageBox} from 'element-plus';
import {WarningFilled, Warning, Refresh, Files, Document, EditPen, Aim, DocumentCopy} from '@element-plus/icons-vue'; import {WarningFilled, Warning, Refresh, Files, Document, EditPen, Aim, DocumentCopy} from '@element-plus/icons-vue';
@@ -276,6 +277,7 @@ const getList = () => {
pageNo: 1, pageNo: 1,
pageSize: 5000, pageSize: 5000,
searchKey: '', searchKey: '',
categoryCode: ActivityCategory.TEST,
}) })
.then((res) => { .then((res) => {
if (res.code === 200 && res.data?.records) { if (res.code === 200 && res.data?.records) {

View File

@@ -740,7 +740,8 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
<!-- 结果表格 --> <!-- 结果表格卡片 -->
<el-card shadow="never" class="apply-card">
<el-table <el-table
ref="applyTableRef" ref="applyTableRef"
v-loading="applyLoading" v-loading="applyLoading"
@@ -749,8 +750,7 @@
@row-click="handleApplyRowClick" @row-click="handleApplyRowClick"
:row-class-name="tableRowClassName" :row-class-name="tableRowClassName"
style="width: 100%" style="width: 100%"
max-height="340" max-height="320"
:scroll="{ y: 340 }"
> >
<el-table-column type="selection" width="55" :selectable="handleSelectable" /> <el-table-column type="selection" width="55" :selectable="handleSelectable" />
<el-table-column label="ID" align="center" width="80" fixed> <el-table-column label="ID" align="center" width="80" fixed>
@@ -779,19 +779,20 @@
</el-table-column> </el-table-column>
<el-table-column label="主刀医生" align="center" width="100" prop="mainSurgeonName" /> <el-table-column label="主刀医生" align="center" width="100" prop="mainSurgeonName" />
</el-table> </el-table>
<!-- 分页在卡片内部 -->
<!-- 底部分页区 --> <div class="apply-pagination">
<div class="pagination-container apply-pagination">
<pagination <pagination
v-show="applyTotal > 0" v-show="applyTotal > 0"
:total="applyTotal" :total="applyTotal"
:page="applyQueryParams.pageNo" :page="applyQueryParams.pageNo"
:limit="applyQueryParams.pageSize" :limit="applyQueryParams.pageSize"
layout="total, sizes, prev, pager, next"
@update:page="val => applyQueryParams.pageNo = val" @update:page="val => applyQueryParams.pageNo = val"
@update:limit="val => applyQueryParams.pageSize = val" @update:limit="val => applyQueryParams.pageSize = val"
@pagination="getSurgicalScheduleList" @pagination="getSurgicalScheduleList"
/> />
</div> </div>
</el-card>
<!-- 底部操作区 --> <!-- 底部操作区 -->
<template #footer> <template #footer>
<div class="dialog-footer" style="padding-top: 12px; border-top: 1px solid #ebeef5"> <div class="dialog-footer" style="padding-top: 12px; border-top: 1px solid #ebeef5">
@@ -2468,19 +2469,35 @@ function getRowClassName({ row, rowIndex }) {
margin-left: 10px; margin-left: 10px;
} }
/* 手术申请查询弹窗 — 分页与footer间距 */ /* 手术申请查询弹窗 — flex 布局确保分页不溢出 */
.surgery-apply-dialog :deep(.el-dialog__body) { .surgery-apply-dialog :deep(.el-dialog__body) {
display: flex;
flex-direction: column;
padding-bottom: 16px; padding-bottom: 16px;
overflow: hidden;
} }
.surgery-apply-dialog :deep(.el-dialog__footer) { .surgery-apply-dialog :deep(.el-dialog__footer) {
padding-top: 8px; padding-top: 0;
}
.surgery-apply-dialog :deep(.apply-card) {
flex: 1;
overflow: hidden;
min-height: 0;
}
.surgery-apply-dialog :deep(.apply-card .el-card__body) {
overflow-y: auto;
} }
.surgery-apply-dialog :deep(.apply-pagination) { .surgery-apply-dialog :deep(.apply-pagination) {
padding-top: 12px; display: flex;
padding-bottom: 16px; justify-content: flex-end;
padding-top: 8px;
border-top: 1px solid #ebeef5;
}
.surgery-apply-dialog :deep(.apply-pagination .pagination-container) {
margin-top: 0;
} }
.surgery-apply-dialog :deep(.apply-pagination .el-pagination) { .surgery-apply-dialog :deep(.apply-pagination .el-pagination) {
margin-right: 80px; position: static;
} }
/* 选中行样式 */ /* 选中行样式 */
@@ -2496,17 +2513,33 @@ function getRowClassName({ row, rowIndex }) {
<style> <style>
/* 手术申请查询弹窗 — 非 scoped 确保穿透 teleport */ /* 手术申请查询弹窗 — 非 scoped 确保穿透 teleport */
.surgery-apply-dialog .apply-pagination {
padding-top: 12px !important;
padding-bottom: 16px !important;
}
.surgery-apply-dialog .apply-pagination .el-pagination {
margin-right: 80px !important;
}
.surgery-apply-dialog .el-dialog__body { .surgery-apply-dialog .el-dialog__body {
display: flex !important;
flex-direction: column !important;
padding-bottom: 16px !important; padding-bottom: 16px !important;
overflow: hidden !important;
} }
.surgery-apply-dialog .el-dialog__footer { .surgery-apply-dialog .el-dialog__footer {
padding-top: 0 !important;
}
.surgery-apply-dialog .apply-card {
flex: 1 !important;
overflow: hidden !important;
min-height: 0 !important;
}
.surgery-apply-dialog .apply-card .el-card__body {
overflow-y: auto !important;
}
.surgery-apply-dialog .apply-pagination {
display: flex !important;
justify-content: flex-end !important;
padding-top: 8px !important; padding-top: 8px !important;
border-top: 1px solid #ebeef5 !important;
}
.surgery-apply-dialog .apply-pagination .pagination-container {
margin-top: 0 !important;
}
.surgery-apply-dialog .apply-pagination .el-pagination {
position: static !important;
} }
</style> </style>