|
@@ -37,9 +37,6 @@
|
|
|
|
|
|
<div class="layout_display_flex_y">
|
|
|
<div class="m-b_8px round-header">
|
|
|
- <el-select v-show="injuryMode" v-model="patient.injuryArea" placeholder="工伤参保地" style="width: 120px">
|
|
|
- <el-option v-for="item in injuryAreas" :key="item.code" :label="item.name" :value="item.code"></el-option>
|
|
|
- </el-select>
|
|
|
<el-button style="margin-left: 10px" type="primary" icon="Tickets" @click="getPsnInsuinfo(1)">待遇检查</el-button>
|
|
|
<el-button type="primary" icon="User" @click="checkIdCard">身份信息</el-button>
|
|
|
<ReadCard :pat-no="patient.inpatientNo" biztype="01103" @success="afterReadCard" />
|
|
@@ -191,7 +188,6 @@ const showTreatmentinfos = ref(false)
|
|
|
const showPsnInsuinfo = ref(false)
|
|
|
const insuRowClickFlag = ref(null)
|
|
|
const zyInYbDiags = ref([])
|
|
|
-const injuryAreas = initInjuryAreas()
|
|
|
const injuryMode = computed(() => {
|
|
|
return medinsStore.isInjuryMode
|
|
|
})
|
|
@@ -423,15 +419,6 @@ onMounted(() => {
|
|
|
})
|
|
|
})
|
|
|
|
|
|
-function initInjuryAreas() {
|
|
|
- return [
|
|
|
- { code: 1, name: '长沙市' },
|
|
|
- { code: 4, name: '长沙县' },
|
|
|
- { code: 2, name: '望城县' },
|
|
|
- { code: 3, name: '省直' },
|
|
|
- ]
|
|
|
-}
|
|
|
-
|
|
|
function filterYesOrNo(val) {
|
|
|
if (val === '0') {
|
|
|
return '否'
|