增加监护人信息限制,在门诊挂号页面增加档案按钮完成患者档案管理的跳转

This commit is contained in:
2025-11-05 11:38:47 +08:00
parent b7412648b4
commit 7ac26cf781
3 changed files with 70 additions and 12 deletions

View File

@@ -3,7 +3,14 @@
<el-row>
<el-col :span="24" class="card-box">
<el-card>
<template #header> <span style="vertical-align: middle">门诊挂号</span></template>
<template #header>
<div style="display: flex; width: 100%; justify-content: center; position: relative;">
<span style="position: absolute; left: 0; vertical-align: middle;">门诊挂号</span>
<el-button type="primary" plain @click="handleArchive" style="width: 100px; height: 36px; font-size: 14px;">
档案
</el-button>
</div>
</template>
<el-form :model="form" :rules="rules" ref="outpatientRegistrationRef" label-width="110px">
<el-row :gutter="24">
<el-col :span="5">
@@ -56,6 +63,7 @@
<el-button type="primary" plain @click="handleReadCard('03')" style="width: 65px">
医保卡
</el-button>
<!-- <el-button
type="primary"
plain
@@ -1188,9 +1196,16 @@ function handleAdd() {
});
}
/**
* 姓名表单获取焦点打开列表
*/
/** 档案按钮点击事件 - 跳转到患者档案管理界面 */
function handleArchive() {
// 使用路由跳转到患者档案管理界面,并携带门诊号作为搜索参数
router.push({
path: '/system/basicmanage/patientmanagement',
query: { searchKey: form.value.busNo }
});
}
/** 姓名表单获取焦点打开列表 */
function handleFocus() {
showPopover.value = true;
}