Procházet zdrojové kódy

Merge remote-tracking branch 'origin/20230223_pad_vue_new_branch' into 20230223_pad_vue_new_branch

28169 před 2 týdny
rodič
revize
fdcd19222d

+ 1 - 1
build/cdn.json Zobrazit soubor

@@ -1,3 +1,3 @@
1 1
 {
2
-  "version": "2999.999.13738"
2
+  "version": "2999.999.13746"
3 3
 }

+ 6 - 2
src/pages/main/newActionBar/monitoring.vue Zobrazit soubor

@@ -152,7 +152,8 @@
152 152
                   <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
153 153
                   <td v-if="isShow('置换率1')">{{item.replacement_rate_one?item.replacement_rate_one:'/'}}</td>
154 154
                   <td v-if="isShow('置换量')" >
155
-                    {{item.displacement_quantity?item.displacement_quantity:'0'}}
155
+                    <span v-if="org_id!=10702"> {{item.displacement_quantity?item.displacement_quantity:''}}</span> 
156
+                    <span v-if="org_id==10702"> {{item.displacement_quantity?item.displacement_quantity:'0'}}</span> 
156 157
                   </td>
157 158
                  
158 159
                   <td v-if="isShow('SpO₂') && template_id != 6 && template_id != 10  && template_id != 11" >
@@ -612,7 +613,10 @@
612 613
                               <td v-if="isShow('钠浓度')">{{item.sodium_concentration?item.sodium_concentration:''}}</td>
613 614
                               <td v-if="isShow('透析液温度')" >{{item.dialysate_temperature?item.dialysate_temperature:''}}</td>
614 615
                               <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
615
-                              <td v-if="isShow('置换量')" >{{item.displacement_quantity?item.displacement_quantity:'0'}}</td>
616
+                              <td v-if="isShow('置换量')" >
617
+                                <span v-if="org_id ==10702"> {{item.displacement_quantity?item.displacement_quantity:'0'}} </span>
618
+                                <span v-if="org_id !=10702"> {{item.displacement_quantity?item.displacement_quantity:''}} </span>
619
+                              </td>
616 620
                               <td v-if="isShow('SpO₂') && template_id != 6 && template_id != 10  && template_id != 11" >
617 621
                                 <span v-if="org_id == 10340">{{item.blood_oxygen_saturation?item.blood_oxygen_saturation:'/'}}</span>
618 622
                                 <span v-else>{{item.blood_oxygen_saturation?item.blood_oxygen_saturation:''}}</span>

+ 6 - 1
src/pages/main/today/dialysisMonitoring.vue Zobrazit soubor

@@ -125,7 +125,12 @@
125 125
           <td v-if="isShow('置换率')">{{ item.replacement_rate ? item.replacement_rate : "" }}</td>
126 126
           <td v-if="isShow('置换率1')">{{ item.replacement_rate_one ? item.replacement_rate_one : "/" }}</td>
127 127
           <td v-if="isShow('置换量')" >
128
-            {{ item.displacement_quantity ? item.displacement_quantity : "0" }}
128
+            <span v-if="org_d == 10702">
129
+              {{ item.displacement_quantity ? item.displacement_quantity : "0" }}
130
+            </span>
131
+            <span v-if="org_d != 10702">
132
+              {{ item.displacement_quantity ? item.displacement_quantity : "" }}
133
+            </span>
129 134
           </td>
130 135
           <th v-if="isShow('电导度')">{{ item.conductivity ? item.conductivity : "" }}</th>
131 136
           <th v-if="isShow('电导度1')">{{ item.conductivity_one ? item.conductivity_one : "/" }}</th>