|
|
@@ -725,15 +725,15 @@
|
|
|
<div style="margin: 6px 8px 6px 0">
|
|
|
同城互认:
|
|
|
1.无
|
|
|
- <el-checkbox v-model="patient.tchrw"></el-checkbox>
|
|
|
+ <input type="checkbox" :checked="patient.tchrw"/>
|
|
|
<span style="margin-left: 12px">2.影像检查</span>
|
|
|
- <el-checkbox v-model="patient.tchryxjc"></el-checkbox>
|
|
|
+ <input type="checkbox" :checked="patient.tchryxjc"/>
|
|
|
<span style="margin-left: 12px">3.检验检查</span>
|
|
|
- <el-checkbox v-model="patient.tchrjyjc"></el-checkbox>
|
|
|
+ <input type="checkbox" :checked="patient.tchrjyjc"/>
|
|
|
<span style="margin-left: 12px">4.病理检查</span>
|
|
|
- <el-checkbox v-model="patient.tchrbljc"></el-checkbox>
|
|
|
+ <input type="checkbox" :checked="patient.tchrbljc"/>
|
|
|
<span style="margin-left: 12px">9.其他</span>
|
|
|
- <el-checkbox v-model="patient.tchrqt"></el-checkbox>
|
|
|
+ <input type="checkbox" :checked="patient.tchrqt"/>
|
|
|
</div>
|
|
|
<div style="margin: 6px 8px 6px 0">
|
|
|
临床路径管理:
|
|
|
@@ -746,15 +746,10 @@
|
|
|
"
|
|
|
>
|
|
|
{{
|
|
|
- filterNameInDic(
|
|
|
- patient.clinicalPathwayManagement,
|
|
|
- "getClinicalPathwayManagement"
|
|
|
- )
|
|
|
+ patient.pathwayMng
|
|
|
}}
|
|
|
</span>
|
|
|
- <span v-for="item in dics.getClinicalPathwayManagement">
|
|
|
- {{ item.code }}.{{ item.name }}
|
|
|
- </span>
|
|
|
+ 1.完成 2.变异 3.退出 4.未入
|
|
|
</div>
|
|
|
<div style="width: 700px;box-sizing: border-box;">
|
|
|
<span>说明:(一)医疗付费方式 1.城镇职工基本医疗保险 2.城镇居民基本医疗保险 3.新型农村合作医疗 4.贫困救助
|
|
|
@@ -787,6 +782,27 @@ const props = defineProps({
|
|
|
},
|
|
|
})
|
|
|
|
|
|
+const transStatus = val => {
|
|
|
+ switch (val) {
|
|
|
+ case 1:
|
|
|
+ case "1":
|
|
|
+ return "治愈";
|
|
|
+ case 2:
|
|
|
+ case "2":
|
|
|
+ return "好转";
|
|
|
+ case 3:
|
|
|
+ case "3":
|
|
|
+ return "未愈";
|
|
|
+ case 4:
|
|
|
+ case "4":
|
|
|
+ return "死亡";
|
|
|
+ case 9:
|
|
|
+ case "9":
|
|
|
+ return "其他";
|
|
|
+ default:
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+};
|
|
|
const dismissStatusText = val => {
|
|
|
switch (val) {
|
|
|
case 1:
|