修改
This commit is contained in:
parent
cdf81f6fe1
commit
7bf0537b44
@ -7,17 +7,19 @@
|
||||
<div class="card">
|
||||
<div class="cardleft">
|
||||
<div class="title">
|
||||
<img class="headsculpture" src="../../../assets/manage/touxiang.png" alt="">
|
||||
<!-- <img class="headsculpture" src="../../../assets/manage/nvtouxiang.png" alt=""> -->
|
||||
<div class="name">
|
||||
{{ list.patientName ? list.patientName : '' }}
|
||||
</div>
|
||||
<div class="genderandage">
|
||||
<span> {{ list.sex == 'MALE' ? "男" : '' }}
|
||||
{{ list.sex == 'FEMALE' ? "女" : '' }}
|
||||
</span>
|
||||
<span v-if="list.sex && list.age">|</span>
|
||||
<span v-if="list.age">{{ list.age }}岁</span>
|
||||
<div style="display: flex;align-items:center">
|
||||
<img class="headsculpture" v-if="list.sex == 'MALE'" src="../../../assets/manage/touxiang.png">
|
||||
<img class="headsculpture" v-else src="../../../assets/manage/nvtouxiang.png">
|
||||
<div class="name">
|
||||
{{ list.patientName ? list.patientName : '' }}
|
||||
</div>
|
||||
<div class="genderandage">
|
||||
<span> {{ list.sex == 'MALE' ? "男" : '' }}
|
||||
{{ list.sex == 'FEMALE' ? "女" : '' }}
|
||||
</span>
|
||||
<span v-if="list.sex && list.age" style="padding: 0 6px;">|</span>
|
||||
<span v-if="list.age">{{ list.age }}岁</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="source">
|
||||
<div class="situation item">
|
||||
@ -64,20 +66,21 @@
|
||||
就诊时间: {{ list.dischargeTime }}
|
||||
</div>
|
||||
</div>
|
||||
<el-descriptions title="诊断信息" style="border-bottom: 1px solid #e6ebf5;margin:16px auto">
|
||||
<el-descriptions title="诊断信息" style="margin:16px auto">
|
||||
<el-descriptions-item label="主要诊断">{{ list.mainDiagnosis }}</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
<el-descriptions title="手术信息" style="margin:16px auto">
|
||||
<el-descriptions title="手术信息" style="margin:16px auto;border-top: 1px solid #e6ebf5;"
|
||||
v-if="list.visitMethod != 'OUTPATIENT_SERVICE'">
|
||||
<el-descriptions-item label="手术名称">{{ list.surgicalName }}</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
<el-collapse v-model="activeNames">
|
||||
<el-collapse-item title="入院记录" name="-1">
|
||||
<div>{{ list.inHospitalInfo }}</div>
|
||||
</el-collapse-item>
|
||||
<el-collapse-item title="手术记录" name="-2">
|
||||
<el-collapse-item title="手术记录" name="-2" v-if="list.visitMethod != 'OUTPATIENT_SERVICE'">
|
||||
<div>{{ list.surgicalRecord }}</div>
|
||||
</el-collapse-item>
|
||||
<el-collapse-item title="出院记录" name="-3">
|
||||
<el-collapse-item title="出院记录" name="-3" v-if="list.visitMethod != 'OUTPATIENT_SERVICE'">
|
||||
<div>{{ list.outHospitalInfo }}</div>
|
||||
</el-collapse-item>
|
||||
</el-collapse>
|
||||
@ -250,11 +253,13 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
.name {}
|
||||
.name {
|
||||
padding: 0 6px;
|
||||
}
|
||||
|
||||
.genderandage {}
|
||||
|
||||
.time {}
|
||||
.genderandage {
|
||||
padding: 0 6px;
|
||||
}
|
||||
|
||||
.headsculpture {
|
||||
width: 35px;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user