在门诊挂号页面增加档案按钮完成患者档案管理的跳转
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
<div style="display: flex; align-items: center; justify-content: space-between; width: 100%">
|
<div style="display: flex; align-items: center; justify-content: space-between; width: 100%">
|
||||||
<span style="vertical-align: middle; font-size: 16px; font-weight: bold;">门诊挂号</span>
|
<span style="vertical-align: middle; font-size: 16px; font-weight: bold;">门诊挂号</span>
|
||||||
<div class="header-buttons">
|
<div class="header-buttons">
|
||||||
|
<el-button type="primary" icon="Document" @click="goToPatientRecord" size="small">档案</el-button>
|
||||||
<el-button type="primary" icon="Plus" @click="handleAddPatient" size="small">新建</el-button>
|
<el-button type="primary" icon="Plus" @click="handleAddPatient" size="small">新建</el-button>
|
||||||
<el-button type="primary" plain icon="Search" @click="handleSearch" size="small">查询</el-button>
|
<el-button type="primary" plain icon="Search" @click="handleSearch" size="small">查询</el-button>
|
||||||
<el-button type="primary" plain @click="handleReadCard('01')" size="small">电子凭证</el-button>
|
<el-button type="primary" plain @click="handleReadCard('01')" size="small">电子凭证</el-button>
|
||||||
@@ -602,6 +603,12 @@ import { formatDate, formatDateStr } from '@/utils/index';
|
|||||||
|
|
||||||
const patientInfo = ref({});
|
const patientInfo = ref({});
|
||||||
|
|
||||||
|
// 跳转到患者档案管理页面
|
||||||
|
const goToPatientRecord = () => {
|
||||||
|
// 使用Vue Router进行路由导航,在当前页面打开新的路由层级
|
||||||
|
router.push('/system/basicmanage/patientmanagement');
|
||||||
|
};
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { proxy } = getCurrentInstance();
|
const { proxy } = getCurrentInstance();
|
||||||
const { sys_normal_disable, sys_user_sex, med_chrgitm_type,medfee_paymtd_code } = proxy.useDict(
|
const { sys_normal_disable, sys_user_sex, med_chrgitm_type,medfee_paymtd_code } = proxy.useDict(
|
||||||
|
|||||||
Reference in New Issue
Block a user