|
@@ -72,6 +72,31 @@
|
|
|
<el-descriptions-item label="诊断名称">
|
|
|
{{ setlinfo.disDiagComment }}
|
|
|
</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="付费权重">
|
|
|
+ {{ setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.weight :'' }}
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item label="分组结果">
|
|
|
+ {{ setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.code : '' }} {{setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.name : '' }}
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item label="倍率(DRG)">
|
|
|
+ <el-tag v-if="isShowColor(setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.bl : '')" effect="dark" type="success">
|
|
|
+ {{ setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.bl : '' }}
|
|
|
+ </el-tag>
|
|
|
+ <el-tag v-else effect="dark" type="danger">
|
|
|
+ {{setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.bl : ''}}
|
|
|
+ </el-tag>
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item label="盈亏额">
|
|
|
+ <el-tag v-if="setlinfo.drgGroupInfo && setlinfo.drgGroupInfo.profit > 0 ? true: false" effect="dark" type="success">
|
|
|
+ {{ setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.profit : '' }}
|
|
|
+ </el-tag>
|
|
|
+ <el-tag v-else effect="dark" type="danger">
|
|
|
+ {{setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.profit : '' }}
|
|
|
+ </el-tag>
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item label="标杆费用">
|
|
|
+ {{setlinfo.drgGroupInfo ? setlinfo.drgGroupInfo.feeStand : ''}}
|
|
|
+ </el-descriptions-item>
|
|
|
<el-descriptions-item label="申报类型">
|
|
|
<el-select v-model="setlinfo.decType" clearable filterable style="width: 150px">
|
|
|
<el-option v-for="item in decTypes" :key="item.code" :disabled="item.dis" :label="item.name"
|
|
@@ -101,7 +126,6 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="诊断代码" prop="disDiag"></el-table-column>
|
|
|
<el-table-column label="诊断名称" prop="disDiagComment"></el-table-column>
|
|
|
- <el-table-column label="手术分值" prop="ssfz"></el-table-column>
|
|
|
<el-table-column label="科室" prop="deptCodeName"></el-table-column>
|
|
|
<el-table-column label="入院病情" prop="admissCond" width="90">
|
|
|
<template #default="scope">
|
|
@@ -413,6 +437,7 @@ const props = defineProps({
|
|
|
|
|
|
const emit = defineEmits(['close','queryCurrentPage'])
|
|
|
|
|
|
+
|
|
|
// 基本信息
|
|
|
const setlinfo = ref({})
|
|
|
// 住院诊断信息
|
|
@@ -457,6 +482,14 @@ const lingShiZhenDuan = ref({
|
|
|
siDiagType: '',
|
|
|
})
|
|
|
|
|
|
+const isShowColor =(bl)=>{
|
|
|
+ if(bl && bl.startsWith('正常病例')){
|
|
|
+ return true
|
|
|
+ }else {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
const zhenDuanDialog = ref(false)
|
|
|
const addZhenDuanFlag = ref(false)
|
|
|
let zhenDuanIndex = 0
|