Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 3 years ago
parent
commit
107f806503

+ 2 - 1
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

3358
                   order_id: this.order.id,
3358
                   order_id: this.order.id,
3359
                   record_time: this.record_date,
3359
                   record_time: this.record_date,
3360
                   admin_user_id: this.$store.getters.xt_user.user.id,
3360
                   admin_user_id: this.$store.getters.xt_user.user.id,
3361
-                  patient_id: this.patientInfo.id
3361
+                  patient_id: this.patientInfo.id,
3362
+                  his_patient_id: this.hisPatientInfo.id,
3362
                 }
3363
                 }
3363
               })
3364
               })
3364
                 .then(function(response) {
3365
                 .then(function(response) {

+ 1 - 1
src/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail.vue View File

498
         } else {
498
         } else {
499
           let arr = []
499
           let arr = []
500
           for (let i = 0; i < this.allProject.length; i++) {
500
           for (let i = 0; i < this.allProject.length; i++) {
501
-            if (this.allProject[i].project_name.indexOf(this.search_project_keyword) != -1 || this.allProject[i].wubi.indexOf(this.search_project_keyword) != -1 || this.allProject[i].pinyin.indexOf(this.search_project_keyword) != -1) {
501
+            if (this.allProject[i].project_name.indexOf(this.search_project_keyword) != -1 ) {
502
               arr = arr.concat(this.allProject[i])
502
               arr = arr.concat(this.allProject[i])
503
             }
503
             }
504
           }
504
           }