28169 1 anno fa
parent
commit
257f2b3440

+ 2 - 2
src/xt_pages/dialysis/details/consumable/dialysisParameterPrint.vue Vedi File

@@ -170,11 +170,11 @@
170 170
                 <td width="100"  v-if="dialysisSett.blood_flow_volume==1">
171 171
                    <span>{{item.dialysis_solution.blood_flow_volume?item.dialysis_solution.blood_flow_volume:""}}</span> 
172 172
                 </td>
173
-                <td>
173
+                
174 174
                 <td>
175 175
                   <span v-if="getBloodAccessOption(item.dialysis_solution.blood_access).indexOf('导管')!==-1">1</span>
176 176
                 </td>
177
-                </td>
177
+                
178 178
                 
179 179
                 <td>
180 180
                   {{ item.advice_spc }}

+ 24 - 0
src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue Vedi File

@@ -1719,6 +1719,30 @@ export default {
1719 1719
           }
1720 1720
       }
1721 1721
 
1722
+      if(this.$store.getters.xt_user.org.id == 10579){
1723
+        var date = new Date()
1724
+          var year = date.getFullYear()
1725
+          var month = date.getMonth() + 1
1726
+          var day = date.getDate()
1727
+
1728
+          var hours = date.getHours()
1729
+          var minites = date.getMinutes()
1730
+
1731
+          if (month < 10) {
1732
+            month = '0' + month
1733
+          }
1734
+          if (day < 10) {
1735
+            day = '0' + day
1736
+          }
1737
+          if (hours < 10) {
1738
+            hours = '0' + hours
1739
+          }
1740
+          if (minites < 10) {
1741
+            minites = '0' + minites
1742
+          }
1743
+          this.groupForm.start_time = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
1744
+      }
1745
+
1722 1746
     },
1723 1747
     selectAllTemplateAdvice(selection) {
1724 1748
       console.log("params",selection)

+ 1 - 1
src/xt_pages/dialysis/details/index.vue Vedi File

@@ -1463,7 +1463,7 @@ export default {
1463 1463
           var filtedSchedules = []
1464 1464
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
1465 1465
             const schedule = originSchedules[s_i]
1466
-            if (schedule.patient.name.indexOf(search_keyword) != -1) {
1466
+            if ((schedule.patient.name.indexOf(search_keyword) != -1) || (schedule.patient.first_letter.indexOf(search_keyword) != -1)) {
1467 1467
               filtedSchedules.push(schedule)
1468 1468
               // break
1469 1469
             }

+ 2 - 0
src/xt_pages/workforce/components/editTableData.vue Vedi File

@@ -5500,10 +5500,12 @@ export default {
5500 5500
         this.patientList = this.all_patients;
5501 5501
       } else {
5502 5502
         this.patientList = [];
5503
+        console.log("this.all_patients",this.all_patients)
5503 5504
         for (let i = 0; i < this.all_patients.length; i++) {
5504 5505
           if (
5505 5506
               this.all_patients[i].name.indexOf(this.keywords) != -1 ||
5506 5507
               this.all_patients[i].dialysis_no.indexOf(this.keywords) != -1
5508
+              ||  this.all_patients[i].first_letter.indexOf(this.keywords) != -1
5507 5509
           ) {
5508 5510
             this.patientList.push(this.all_patients[i]);
5509 5511
           }