|
@@ -24,7 +24,6 @@
|
|
|
医保费用明细
|
|
|
</el-button>
|
|
|
<el-button type="primary" icon="User" @click="checkIdInfo">身份信息</el-button>
|
|
|
- <el-button type="primary" icon="Tickets" :disabled="injuryMode" @click="beforeGetTreatinfo">待遇检查</el-button>
|
|
|
<el-button type="success" icon="Check" @click="beforeHandleApply(true)">审核通过</el-button>
|
|
|
<el-button type="danger" icon="Close" @click="beforeHandleApply(false)">审核不通过</el-button>
|
|
|
</div>
|
|
@@ -230,8 +229,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <Insuinfo v-if="showPsnInsuinfo" :params="checkTreatmentParams" @close="showPsnInsuinfo = false" @row-click="checkTreatmentinfos"/>
|
|
|
- <Treatmentinfo v-if="showTreatmentinfos" :params="checkTreatmentParams" @close="showTreatmentinfos = false"/>
|
|
|
<MedfeeAnalyse v-if="showFeeDetl" type="unsettled" :mdtrt-id="currentApply.mdtrtId" @close="showFeeDetl = false"/>
|
|
|
<IdentifyImage v-if="showIdCardImg" :pat-no="currentApply.patNo" :times="currentApply.times" @close="showIdCardImg = false"/>
|
|
|
<el-drawer
|
|
@@ -264,8 +261,6 @@ import {
|
|
|
selectSettledApplies
|
|
|
} 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'
|
|
|
import MedfeeAnalyse from '../../../components/medical-insurance/medfee-analyse/Index.vue'
|
|
|
import IdentifyImage from '../../../components/inpatient/IdentifyImage.vue'
|
|
|
import {Search} from "@element-plus/icons-vue";
|
|
@@ -308,9 +303,6 @@ const feeDtle = () => {
|
|
|
}
|
|
|
|
|
|
const medInsStore = useMedinsStore()
|
|
|
-const injuryMode = computed(() => {
|
|
|
- return medInsStore.isInjuryMode
|
|
|
-})
|
|
|
const currentRow = ref({})
|
|
|
const handleClickSettleApply = (row) => {
|
|
|
row.inOutFlag = inOutFlag.value
|
|
@@ -383,29 +375,6 @@ const checkIdInfo = () => {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-const showPsnInsuinfo = ref(false)
|
|
|
-const showTreatmentinfos = ref(false)
|
|
|
-const checkTreatmentParams = ref({})
|
|
|
-const beforeGetTreatinfo = () => {
|
|
|
- checkTreatmentParams.value = {
|
|
|
- medType: currentApply.value.medType,
|
|
|
- patNo: currentApply.value.patNo,
|
|
|
- times: currentApply.value.times,
|
|
|
- ledgerSn: currentApply.value.ledgerSn,
|
|
|
- socialNo: patient.value.socialNo,
|
|
|
- name: patient.value.name,
|
|
|
- admdvs: patient.value.admdvs,
|
|
|
- }
|
|
|
- showPsnInsuinfo.value = true
|
|
|
-}
|
|
|
-const checkTreatmentinfos = (row) => {
|
|
|
- checkTreatmentParams.value.psnNo = row.psnNo
|
|
|
- checkTreatmentParams.value.begntime = patient.value.ybRegisterDate
|
|
|
- checkTreatmentParams.value.insutype = row.insutype
|
|
|
- showPsnInsuinfo.value = false
|
|
|
- showTreatmentinfos.value = true
|
|
|
-}
|
|
|
-
|
|
|
const showHistories = ref(false)
|
|
|
const histories = ref([])
|
|
|
const getApplyHistories = (row) => {
|