|
@@ -220,24 +220,15 @@
|
|
|
</div>
|
|
|
<div>
|
|
|
入院时间:<input id="admissDate" v-model="patient.admissDate" readonly style="width: 135px"/>
|
|
|
- 入院科别:<input
|
|
|
- v-model="patient.admissDept"
|
|
|
- readonly
|
|
|
- style="width: 120px"
|
|
|
- />
|
|
|
- 病房:<input v-model="patient.admissWard" readonly style="width: 80px"/> 转科科别:<input
|
|
|
- v-model="patient.transDept" readonly style="width: 120px"/>
|
|
|
+ 入院科别:<input v-model="patient.admissDept" readonly style="width: 120px"/>
|
|
|
+ 病房:<input v-model="patient.admissWard" readonly style="width: 80px"/>
|
|
|
+ 转科科别:<input v-model="patient.transDept" readonly style="width: 120px"/>
|
|
|
</div>
|
|
|
<div>
|
|
|
出院时间:<input id="dismissDate" v-model="patient.dismissDate" readonly style="width: 135px"/>
|
|
|
- 出院科别:<input
|
|
|
- v-model="patient.dismissDept"
|
|
|
- readonly
|
|
|
- style="width: 120px"
|
|
|
- />
|
|
|
- 病房:<input v-model="patient.dismissWard" readonly style="width: 80px"/> 住院天数:<input id="admissDays"
|
|
|
- v-model="patient.admissDays"
|
|
|
- style="width: 70px"/>
|
|
|
+ 出院科别:<input v-model="patient.dismissDept" readonly style="width: 120px"/>
|
|
|
+ 病房:<input v-model="patient.dismissWard" readonly style="width: 80px"/>
|
|
|
+ 住院天数:<input id="admissDays" v-model="patient.admissDays" style="width: 70px"/>
|
|
|
</div>
|
|
|
<div id="clinicDiag" style="display: flex;align-items: center">
|
|
|
门(急)诊诊断:
|
|
@@ -274,18 +265,16 @@
|
|
|
<td>
|
|
|
<select id="disdiagMainAdmStatus" style="border: none !important; width: 30px"
|
|
|
v-model="patient.disdiagList[0].admissStatus">
|
|
|
- <option v-for="(item, index) in dics.getDisAdmissStatus" :key="index" :value="item.code"> {{
|
|
|
- item.code
|
|
|
- }}
|
|
|
+ <option v-for="(item, index) in dics.getDisAdmissStatus" :key="index" :value="item.code">
|
|
|
+ {{item.code }}
|
|
|
</option>
|
|
|
</select>
|
|
|
</td>
|
|
|
<td>
|
|
|
<select style="border: none !important; width: 30px"
|
|
|
v-model="patient.disdiagList[0].dismissStatus" @change="handleSelectCybq">
|
|
|
- <option v-for="(item, index) in dics.getDisdiagStatus" :key="index" :value="item.code"> {{
|
|
|
- item.code
|
|
|
- }}
|
|
|
+ <option v-for="(item, index) in dics.getDisdiagStatus" :key="index" :value="item.code">
|
|
|
+ {{item.code }}
|
|
|
</option>
|
|
|
</select>
|
|
|
</td>
|
|
@@ -2084,17 +2073,21 @@ table td {
|
|
|
font-weight: bold;
|
|
|
font-size: 16px;
|
|
|
}
|
|
|
+
|
|
|
.audit-state_approved {
|
|
|
color: green;
|
|
|
}
|
|
|
+
|
|
|
.audit-state_rejected {
|
|
|
color: red;
|
|
|
text-decoration: underline;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
+
|
|
|
.audit-state_initial {
|
|
|
color: #777777;
|
|
|
}
|
|
|
+
|
|
|
.audit-state_none {
|
|
|
color: #e8b600;
|
|
|
}
|