提交 823dd763 编写于 作者: qian.jie's avatar qian.jie

添加患者信息

上级 23cf6250
...@@ -30,6 +30,13 @@ ...@@ -30,6 +30,13 @@
{{ userNamePhone }} {{ userNamePhone }}
</span> </span>
</div> </div>
<div class="name-floor">
<span class="doctor-info-name">患者信息</span>
<span class="name-info-detail">{{ patientName }}</span>
<span class="info-phone">
{{ patientMobilePhone }}
</span>
</div>
<div class="daignose-info"> <div class="daignose-info">
<span>分诊科室:{{ triageDepartment }}</span> <span>分诊科室:{{ triageDepartment }}</span>
</div> </div>
...@@ -116,6 +123,14 @@ ...@@ -116,6 +123,14 @@
type: String, type: String,
default: '', default: '',
}, },
patientName: {
type: String,
default: '',
},
patientMobilePhone: {
type: String,
default: '',
},
triageDepartment: { triageDepartment: {
type: String, type: String,
default: '', default: '',
...@@ -276,9 +291,10 @@ ...@@ -276,9 +291,10 @@
border-radius: 8px; border-radius: 8px;
height: 68px; height: 68px;
display: flex; display: flex;
justify-content: space-between;
padding: 20px 30px 20px 0; padding: 20px 30px 20px 0;
.name-floor { .name-floor {
width: 50%; // width: 50%;
padding: 10px 26px; padding: 10px 26px;
display: flex; display: flex;
align-items: center; align-items: center;
...@@ -312,7 +328,7 @@ ...@@ -312,7 +328,7 @@
color: #666666; color: #666666;
display: flex; display: flex;
align-items: center; align-items: center;
width: 50%; // width: 50%;
justify-content: flex-end; justify-content: flex-end;
} }
} }
......
...@@ -544,6 +544,8 @@ ...@@ -544,6 +544,8 @@
:user-name="userName" :user-name="userName"
:user-name-phone="userNamePhone" :user-name-phone="userNamePhone"
:triage-department="triageDepartment" :triage-department="triageDepartment"
:patient-name="patientName"
:patient-mobile-phone="patientMobilePhone"
:department-id="departmentId" :department-id="departmentId"
@search="search" @search="search"
/> />
...@@ -1242,6 +1244,8 @@ ...@@ -1242,6 +1244,8 @@
this.userNamePhone = row.userMobile; this.userNamePhone = row.userMobile;
this.triageDepartment = row.triageDepartment; this.triageDepartment = row.triageDepartment;
this.departmentId = row.triageDepartmentId; this.departmentId = row.triageDepartmentId;
this.patientName = row.patientName;
this.patientMobilePhone = row.patientMobilePhone;
this.diagnosisTimeVisible = true; this.diagnosisTimeVisible = true;
this.bizType = 5; this.bizType = 5;
// } // }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册