Browse Source

删除不再使用的字段

lighter 4 months ago
parent
commit
9dee3a8d6d

+ 14 - 0
.env.pnfy

@@ -0,0 +1,14 @@
+ENV = 'pnfy'
+
+VITE_BASE_URL = 'http://172.16.20.108:8706'
+VITE_SOCKET_URL = 'ws://172.16.20.108:8707/websocket/'
+VITE_EMR_CONTROL_URL = '172.16.20.108:9227'
+VITE_DATA_BASE = 'http://172.16.20.108:9205'
+VITE_SOCKET_V2 = 'http://172.16.20.108:8707/socketApi'
+VITE_MAGIC_API_IFRAME = 'http://172.16.20.108:9206'
+
+VITE_HOSPITAL_NAME = '天资'
+VITE_SYSTEM_NAME = '工作集成平台'
+VITE_HOSPITAL_CODE = 'H00000000001'
+
+VITE_UPLOAD_TEMPLATE_THUMB = ''

+ 0 - 1
src/ts-type/patient.ts

@@ -67,7 +67,6 @@ export interface Patient {
   latechbFlag?: string;
   pretFlag?: string;
   mdtrtId?: string;
-  injuryArea?: number;
   injurySerialNo?: string;
   actIptDays?: string;
   revokeRemark?: string;

+ 1 - 27
src/views/medical-insurance/inpatient/AdmRegistration.vue

@@ -233,32 +233,13 @@
 
         <el-descriptions-item>
           <template #label> 参保地区</template>
-          <el-select
-            v-if="injuryMode"
-            v-model="patient.injuryArea"
-            placeholder="工伤参保地"
-            size="small"
-          >
-            <el-option
-              v-for="item in injuryAreas"
-              :key="item.code"
-              :label="item.name"
-              :value="item.code"
-            >
-              <span style="color: #8492a6; font-size: 12px">{{
-                item.code
-              }}</span>
-              <el-divider direction="vertical"></el-divider>
-              <span>{{ item.name }}</span>
-            </el-option>
-          </el-select>
           <el-cascader
-            v-else
             v-model="patient.admdvsCascader"
             clearable
             filterable
             placeholder="请选择"
             :options="allAdmdvses"
+            :disabled="injuryMode"
             @change="handleAdmdvsChange"
           ></el-cascader>
         </el-descriptions-item>
@@ -771,13 +752,6 @@ const cptSpecialDiags = computed(() => {
 });
 const matnTypes = ref([]);
 
-const injuryAreas = [
-  { code: 1, name: "长沙市" },
-  { code: 4, name: "长沙县" },
-  { code: 2, name: "望城县" },
-  { code: 3, name: "省直" },
-];
-
 const expContent = reactive({
   MDTRT_GRP_TYPE: "",
   TRUM_FLAG: "",

+ 0 - 13
src/views/medical-insurance/inpatient/AdmissVerification.vue

@@ -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 '否'