|
|
|
@ -1,70 +1,70 @@ |
|
|
|
<template> |
|
|
|
<div style="display: flex"> |
|
|
|
<div style="display: flex; flex-wrap: wrap; width: 100%;"> |
|
|
|
<div class="query"> |
|
|
|
<span>条码号</span> |
|
|
|
<el-input placeholder="条码号" v-model="doctorCheck.prBase.patientRegisterNo" size="small" style="width: 120px;margin-left:10px" |
|
|
|
<div style="display: flex; flex-wrap: wrap;height:70px; width: 100%;"> |
|
|
|
<div> |
|
|
|
<span class="query">条码号</span> |
|
|
|
<el-input placeholder="条码号" v-model="doctorCheck.prBase.patientRegisterNo" size="small" style="width: 140px;" |
|
|
|
clearable @input="onQueryByPatientRegisterNo" /> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>档案号</span> |
|
|
|
<el-input placeholder="档案号" v-model="doctorCheck.prBase.patientNo" size="small" style="width: 120px;margin-left:10px" clearable |
|
|
|
<div> |
|
|
|
<span class="query">档案号</span> |
|
|
|
<el-input placeholder="档案号" v-model="doctorCheck.prBase.patientNo" size="small" style="width: 100px;" clearable |
|
|
|
@input="onQueryByPatientNo" /> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>姓名</span> |
|
|
|
<el-input placeholder="姓名" v-model="doctorCheck.prBase.patientName" size="small" style="width: 120px;margin-left:10px" disabled /> |
|
|
|
<div> |
|
|
|
<span class="query">姓名</span> |
|
|
|
<el-input placeholder="姓名" v-model="doctorCheck.prBase.patientName" size="small" style="width: 100px;" disabled /> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>性别</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.sexId" style="width: 120px;margin-left:10px" size="small" disabled> |
|
|
|
<div> |
|
|
|
<span class="query">性别</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.sexId" style="width: 80px;" size="small" disabled> |
|
|
|
<el-option v-for="item in dict.sex" :key="item.id" :label="item.displayName" :value="item.id" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>体检次数</span> |
|
|
|
<el-input v-model="doctorCheck.prBase.medicalTimes" size="small" style="width: 120px;margin-left:10px" disabled /> |
|
|
|
<div> |
|
|
|
<span class="query">体检次数</span> |
|
|
|
<el-input v-model="doctorCheck.prBase.medicalTimes" size="small" style="width: 40px;" disabled /> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>婚姻</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.maritalStatusId" style="width: 120px;margin-left:10px" size="small" disabled> |
|
|
|
<div> |
|
|
|
<span class="query">婚姻</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.maritalStatusId" style="width: 80px;" size="small" disabled> |
|
|
|
<el-option v-for="item in dict.maritalStatus" :key="item.id" :label="item.displayName" :value="item.id" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>体检日期</span> |
|
|
|
<div> |
|
|
|
<span class="query">体检日期</span> |
|
|
|
<el-input :value="doctorCheck.prBase.creationTime ? lmoment(doctorCheck.prBase.creationTime, 'yyyy-MM-DD') : ''" |
|
|
|
style="width: 120px;margin-left:10px" size="small" disabled></el-input> |
|
|
|
style="width: 100px;" size="small" disabled></el-input> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>单位</span> |
|
|
|
<el-input :value="doctorCheck.prBase.customerOrgParentName" style="width: 120px;margin-left:10px" size="small" disabled /> |
|
|
|
<div> |
|
|
|
<span class="query">单位</span> |
|
|
|
<el-input :value="doctorCheck.prBase.customerOrgParentName" style="width: 120px;" size="small" disabled /> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>部门</span> |
|
|
|
<el-input :value="doctorCheck.prBase.customerOrgName" style="width: 120px;margin-left:10px" size="small" disabled /> |
|
|
|
<div> |
|
|
|
<span class="query">部门</span> |
|
|
|
<el-input :value="doctorCheck.prBase.customerOrgName" style="width: 120px;" size="small" disabled /> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>体检类别</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.medicalTypeId" disabled style="width: 120px;margin-left:10px" size="small"> |
|
|
|
<div> |
|
|
|
<span class="query">体检类别</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.medicalTypeId" disabled style="width: 100px;" size="small"> |
|
|
|
<el-option v-for="item in dict.medicalType" :key="item.id" :label="item.displayName" :value="item.id" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>人员类别</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.personnelTypeId" disabled style="width: 120px;margin-left:10px" size="small"> |
|
|
|
<div> |
|
|
|
<span class="query">人员类别</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.personnelTypeId" disabled style="width: 100px;" size="small"> |
|
|
|
<el-option v-for="item in dict.personnelType" :key="item.id" :label="item.displayName" :value="item.id" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>民族</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.nationId" disabled style="width: 120px;margin-left:10px" size="small"> |
|
|
|
<div> |
|
|
|
<span class="query">民族</span> |
|
|
|
<el-select v-model="doctorCheck.prBase.nationId" disabled style="width: 100px;" size="small"> |
|
|
|
<el-option v-for="item in dict.nation" :key="item.id" :label="item.displayName" :value="item.id" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<div class="query"> |
|
|
|
<span>手机</span> |
|
|
|
<el-input :value="doctorCheck.prBase.mobileTelephone" style="width: 120px;margin-left:10px" size="small" disabled /> |
|
|
|
<div> |
|
|
|
<span class="query">手机</span> |
|
|
|
<el-input :value="doctorCheck.prBase.mobileTelephone" style="width: 120px;" size="small" disabled /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -181,6 +181,7 @@ export default { |
|
|
|
<style scoped> |
|
|
|
.query { |
|
|
|
margin-left: 10px; |
|
|
|
padding: 5px 5px; |
|
|
|
margin-right: 2px; |
|
|
|
padding: 1px 1px; |
|
|
|
} |
|
|
|
</style> |