项目类别
@@ -10,7 +10,7 @@
       
       
         
           
           
@@ -60,12 +60,12 @@
           
             总金额 
           
-          
         
         
-          
             
           
@@ -73,7 +73,7 @@
       
       
         
           
           
@@ -624,7 +624,8 @@ export default {
         if (lfind > -1) {
           this.addAbs([this.dict.asbItemQuick[lfind]])
         }
-      }
+      }    
+
     },
     // quickChoosedAsb(v){
     //   let lfind = -1
@@ -799,6 +800,19 @@ export default {
         this.onSubmit('');
       }
     },
+
+    //快速选择完后,重新将光标定位到 asbItemId
+    "asbItemId"(newVal, oldVal) {
+      if (newVal != oldVal && newVal != '') {
+        //重新定位光标
+        this.$nextTick(() => {
+          console.log("1this.$refs['asbItemId'].focus()");
+          this.$refs['asbItemId'].focus(); //total  asbItemId
+          console.log("2this.$refs['asbItemId'].focus()");
+        });
+      }
+    },
+
   },
 };
 
@@ -807,7 +821,7 @@ export default {
 
 .mainareaBox {
   border: 1px solid #000;
-  height: v-bind("(window.pageHeight > 735 ? (window.pageHeight - 535) : 200) + 'px'");
+  height: v-bind("(window.pageHeight > 720 ? (window.pageHeight - 460) : 260) + 'px'");
   margin-top: 5px;
 }
 
From 3f62a86a280111ed38c9798c50b9f291695c1fc2 Mon Sep 17 00:00:00 2001
From: pengjun <158915633@qq.com>
Date: Tue, 5 Sep 2023 15:09:12 +0800
Subject: [PATCH 2/3] charge
---
 .../customerOrg/customerOrgEdit.vue           | 20 ++---
 .../patientRegister/PatientRegisterEdit.vue   | 75 +++++++++++++++++--
 .../patientRegister/PatientRegisterItem.vue   | 14 +++-
 src/views/charge/charge.vue                   |  8 +-
 4 files changed, 93 insertions(+), 24 deletions(-)
diff --git a/src/components/customerOrg/customerOrgEdit.vue b/src/components/customerOrg/customerOrgEdit.vue
index d5ef268..9ce4561 100644
--- a/src/components/customerOrg/customerOrgEdit.vue
+++ b/src/components/customerOrg/customerOrgEdit.vue
@@ -123,7 +123,7 @@
         
         
           
-            
+            
               
             
           
@@ -133,7 +133,7 @@
             
           
           
-            
+            
               
             
           
@@ -239,18 +239,10 @@ export default {
 
     changeBox(type) {
       //赋值
-      if (type == 'isActive') {
-        if (this.form.isActiveBox) {
-          this.form.isActive = 'Y';
-        } else {
-          this.form.isActive = 'N';
-        }
-      } else {
-        if (this.form.isLockBox) {
-          this.form.isLock = 'Y';
-        } else {
-          this.form.isLock = 'N';
-        }
+      if(this.form[type + 'Box']){
+        this.form[type] = 'Y';
+      }else{
+        this.form[type] = 'N';
       }
     },
 
diff --git a/src/components/patientRegister/PatientRegisterEdit.vue b/src/components/patientRegister/PatientRegisterEdit.vue
index bd2df5f..feb5a46 100644
--- a/src/components/patientRegister/PatientRegisterEdit.vue
+++ b/src/components/patientRegister/PatientRegisterEdit.vue
@@ -196,14 +196,20 @@
               
               
                 
+                  
+                  
                 
               
               
                 
+                  
+                  
                 
               
               
@@ -212,6 +218,7 @@
                   是
                   否
                   -->
+                  
                 
               
               
@@ -220,6 +227,7 @@
                   是
                   否
                    -->
+                   
                 
               
               
@@ -305,7 +313,7 @@