소스 검색

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

lighter 3 년 전
부모
커밋
09e7941d70
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. 6 2
      src/views/medical-insurance/inpatient/SettleVerification.vue

+ 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'