Browse Source

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

XMLWAN 4 years ago
parent
commit
81045b69dc

+ 4 - 4
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue View File

@@ -276,7 +276,7 @@
276 276
             align="center"
277 277
             label="置换量(ml)"
278 278
             width="100"
279
-            v-if=" isShow('置换量') && ((template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26) || org_id != 9919)" >
279
+            v-if=" isShow('置换量') && ((template_id == 6 && org_id != 9919) || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26)" >
280 280
             <template slot-scope="scope">
281 281
               {{ scope.row.displacement_quantity ? scope.row.displacement_quantity : "" }}
282 282
             </template>
@@ -287,7 +287,7 @@
287 287
             align="center"
288 288
             label="置换量(L)"
289 289
             width="100"
290
-            v-if=" isShow('置换量') &&  ((template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26) || org_id == 9919)" >
290
+            v-if=" isShow('置换量') &&  ((template_id != 6 || org_id == 9919) && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26)" >
291 291
             <template slot-scope="scope">
292 292
               {{ scope.row.displacement_quantity ? scope.row.displacement_quantity : "" }}
293 293
             </template>
@@ -527,12 +527,12 @@
527 527
               <el-input v-model="form.replacement_rate"></el-input>
528 528
             </el-form-item>
529 529
           </el-col>
530
-          <el-col :span="8" v-if=" isShow('置换量') &&  ((template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26) || org_id == 9919)">
530
+          <el-col :span="8" v-if=" isShow('置换量') &&  ((template_id != 6 || org_id == 9919) && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26)">
531 531
             <el-form-item label="置换量(L):">
532 532
               <el-input v-model="form.displacement_quantity"></el-input>
533 533
             </el-form-item>
534 534
           </el-col>
535
-          <el-col :span="8" v-if=" isShow('置换量') && ((template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26) || org_id != 9919)">
535
+          <el-col :span="8" v-if=" isShow('置换量') && ((template_id == 6 && org_id != 9919) || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26)">
536 536
             <el-form-item label="置换量(ml):">
537 537
               <el-input v-model="form.displacement_quantity"></el-input>
538 538
             </el-form-item>

+ 2 - 2
src/xt_pages/dialysis/details/dialysisMonitoring.vue View File

@@ -22,8 +22,8 @@
22 22
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
23 23
           <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26) " width="92px" > 置换率(ml/min) </th>
24 24
           <th v-if=" isShow('置换率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26" width="92px" > 置换率(L/h)  </th>
25
-          <th v-if=" isShow('置换量') && ((template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26) || org_id != 9919)" width="92px"  > 置换量(ml)  </th>
26
-          <th v-if=" isShow('置换量') && ((template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26) || org_id == 9919)" width="92px" > 置换量(L) </th>
25
+          <th v-if=" isShow('置换量') && ((template_id == 6 && org_id != 9919) || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26)" width="92px"  > 置换量(ml)  </th>
26
+          <th v-if=" isShow('置换量') && ((template_id != 6 || org_id == 9919) && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26)" width="92px" > 置换量(L) </th>
27 27
           <th v-if=" isShow('SpO₂') && template_id != 6 && template_id != 10 && template_id != 11  " width="92px" > SpO₂(%) </th>
28 28
           <th v-if="isShow('电导度')" width="92px">电导度(mS/m)</th>
29 29
           <th v-if="isShow('置换液流量')" width="92px">置换液流量(ml/h)</th>