Przeglądaj źródła

在出院审核界面添加个账使用标志

lighter 3 lat temu
rodzic
commit
09e7941d70

+ 6 - 2
src/views/medical-insurance/inpatient/SettleVerification.vue

@@ -66,7 +66,7 @@
               </el-descriptions-item>
               <el-descriptions-item>
                 <template #label> 性别 </template>
-                {{ patient.sex === 1 ? '男' : '女' }}
+                {{ patient.sex ? (patient.sex === 1 ? '男' : '女') : '' }}
               </el-descriptions-item>
               <el-descriptions-item>
                 <template #label> 病区 </template>
@@ -132,6 +132,10 @@
                   <template #label> 申请理由 </template>
                   {{ currentApply.inputComment }}
                 </el-descriptions-item>
+                <el-descriptions-item>
+                  <template #label> 使用个账 </template>
+                  {{ currentApply.acctUsedFlag ? (currentApply.acctUsedFlag === '1' ? '是' : '否') : '' }}
+                </el-descriptions-item>
                 <el-descriptions-item>
                   <template #label> 处理人 </template>
                   {{ currentApply.handleStaffName }}
@@ -197,7 +201,7 @@ import store from '@/store'
 import maleIcon from '@/assets/male-icon.png'
 import femaleIcon from '@/assets/female-icon.png'
 import { ElMessage, ElMessageBox } from 'element-plus'
-import { selectUnhandledApplies, selectPatientInfo, handleApply } from '../../../api/medical-insurance/si-settle-apply'
+import { selectUnhandledApplies, selectPatientInfo, handleApply } from '@/api/medical-insurance/si-settle-apply'
 import { statusFlags, trueMedTypes } from '../../../data/index'
 import Insuinfo from '../../../components/medical-insurance/insuinfo/Index.vue'
 import Treatmentinfo from '../../../components/medical-insurance/treatmentinfo/Index.vue'