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

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

@@ -179,11 +179,19 @@
label='门诊号'
align="center"
key="busNo"
prop="busNo"
width="110px"
min-width="150px"
:show-overflow-tooltip="true"
resizable
/>
>
<template #default="scope">
<el-button
type="text"
@click="handleArchive(scope.row)"
>
{{ scope.row.busNo }}
</el-button>
</template>
</el-table-column>
<el-table-column
label="科室"
align="center"
@@ -207,7 +215,7 @@
align="center"
key="ybCode"
prop="ybCode"
width="190px"
min-width="200px"
:show-overflow-tooltip="true"
resizable
/>
@@ -217,7 +225,7 @@
align="center"
key="clinicalName"
prop="clinicalName"
min-width="150px"
min-width="180px"
:show-overflow-tooltip="true"
resizable
/>
@@ -226,7 +234,7 @@
align="center"
key="ybNo"
prop="ybNo"
width="220px"
min-width="250px"
:show-overflow-tooltip="true"
resizable
/>
@@ -734,6 +742,16 @@ function autoFitColumnWidth(property) {
}
}
/** 跳转到患者档案管理页面 */
function handleArchive(row) {
// 跳转到患者档案管理页面并传递busNo参数
proxy.$router.push({
path: '/system/basicmanage/patientmanagement',
query: { searchKey: row.busNo }
});
}
getList();
getPharmacyCabinetLists()