lighter 1 年之前
父节点
当前提交
ce3aab3a18

+ 1 - 1
src/views/clinic/triage/Untriaged.vue

@@ -6,7 +6,7 @@
             <ReadElectronicSiCard pat-no="triage" biztype="01101" @success="afterReadCard"/>
         </template>
         <template #main>
-            <el-table :data="patients" stripe highlight-current-row :height="tableHeight" size="middle">
+            <el-table :data="patients" stripe highlight-current-row :height="tableHeight" >
                 <el-table-column fixed prop="ghNo" label="队列号" sortable width="100"></el-table-column>
                 <el-table-column prop="patientId" label="id号" width="100"></el-table-column>
                 <el-table-column prop="name" label="姓名" width="100"></el-table-column>

+ 2 - 2
src/views/dictionary/NationalSiMatch.vue

@@ -137,7 +137,7 @@
           <template #prepend>注册证号过滤</template>
         </el-input>
         <el-input v-model="nationalCode" clearable style="width: 320px">
-          <template #prepend>国家代码</template>
+          <template #prepend>国家代码过虑</template>
         </el-input>
         <el-table :data="cptNationalItems" :height="dialogTableHeight" stripe>
           <el-table-column label="国家代码" prop="nationalCode"></el-table-column>
@@ -298,7 +298,7 @@ const cptNationalItems = computed(() => {
     })
   } else {
     return data.national.filter((item) => {
-      return true
+      return item.nationalCode.indexOf(nationalCode.value) !== -1
     })
   }
 })

+ 9 - 0
src/views/hospitalization/case-front-sheet/FillCaseFrontSheet.vue

@@ -1819,6 +1819,15 @@ function executeSubmitAudit() {
   }
   submitQualityVerification(params).then(() => {
     xcMessage.success('提交成功')
+    if (inOutStatus === 2) {
+      CyMessageBox.confirm({
+        type: 'warning',
+        title: '提示',
+        message: '是否进行结算清单质控?'
+      }).then(() => {
+        setlUplaodClick()
+      })
+    }
   })
 }