|
@@ -3,6 +3,7 @@
|
|
|
<el-dialog v-model="huanZheXinXiDialog" fullscreen title="修改信息" @closed="emit('close')">
|
|
|
<el-descriptions :column="4" border style="width: 100%" title="基本信息">
|
|
|
<template #extra>
|
|
|
+ <el-button size="small" type="primary" @click="drgGroupTest">DRG分组测算</el-button>
|
|
|
<el-button type="info" @click="shenHeClick">审核信息</el-button>
|
|
|
<el-button size="small" type="primary" @click="shuJuDuiBi">数据对比</el-button>
|
|
|
<el-button size="small" type="success" @click="baoCunXiuGai">保存修改</el-button>
|
|
@@ -299,7 +300,8 @@ import {
|
|
|
removeBloodTransfusion,
|
|
|
setlUploadAudit,
|
|
|
shouShuBianMa,
|
|
|
- upldSetlList
|
|
|
+ upldSetlList,
|
|
|
+ sendDrgGroupTest
|
|
|
} from '@/api/medical-insurance/si-setl-upload'
|
|
|
import {formatDatetime} from '@/utils/date'
|
|
|
import {listIsBlank, stringIsBlank, stringNotBlank} from '@/utils/blank-utils'
|
|
@@ -692,6 +694,19 @@ const shuJuDuiBi = () => {
|
|
|
}
|
|
|
shuJuDuiBiDialogRef = true
|
|
|
}
|
|
|
+/*drg分组测算*/
|
|
|
+const drgGroupTest = () => {
|
|
|
+ let newData = {};
|
|
|
+ newData = clone(props.data)
|
|
|
+ newData.newYbZyDisDiag = diseinfo.value
|
|
|
+ newData.newBatjBa4 = oprninfo.value
|
|
|
+ newData.decType=setlinfo.value.decType
|
|
|
+ newData.operation=setlinfo.value.operation
|
|
|
+ sendDrgGroupTest(newData).then((res) => {
|
|
|
+ return window.open(res,'');
|
|
|
+ })
|
|
|
+
|
|
|
+}
|
|
|
/* 数据对比结束 */
|
|
|
|
|
|
/* 获取患者各个科室的费用 */
|