XMLWAN 3 years ago
parent
commit
ac12a62ca2

+ 16 - 0
src/xt_pages/dialysis/details/DialysisPrescription.vue View File

323
           <span class="content">{{this.prescription.amylaceum}}</span>
323
           <span class="content">{{this.prescription.amylaceum}}</span>
324
         </li>
324
         </li>
325
 
325
 
326
+        <li v-if="isShow('单超时长')">
327
+          <label>单超时长(h): </label>
328
+          <span class="content">{{this.prescription.single_time}}</span>
329
+        </li>
330
+
331
+        <li v-if="isShow('单超脱水')">
332
+          <label>单超脱水(L): </label>
333
+          <span class="content">{{this.prescription.single_water}}</span>
334
+        </li>
335
+
336
+
337
+         <li v-if="isShow('置换流量')">
338
+          <label>置换流量(L/h): </label>
339
+          <span class="content">{{this.prescription.replacement_flow}}</span>
340
+        </li>
341
+
326
       </ul>
342
       </ul>
327
     </div>
343
     </div>
328
     <div style="color:#34495e;margin: 12px 100px 0 100px;">备注: <span style="color:#409eff;">{{ note }}</span></div>
344
     <div style="color:#34495e;margin: 12px 100px 0 100px;">备注: <span style="color:#409eff;">{{ note }}</span></div>

+ 27 - 0
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue View File

96
             </el-form-item>
96
             </el-form-item>
97
           </el-col>
97
           </el-col>
98
 
98
 
99
+
100
+
99
           <el-col :span="8"
101
           <el-col :span="8"
100
                   v-if="isShows('目标超滤量')  && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 36 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.org_id != 9555 ">
102
                   v-if="isShows('目标超滤量')  && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 36 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.org_id != 9555 ">
101
             <el-form-item label="目标超滤量(L):">
103
             <el-form-item label="目标超滤量(L):">
106
             </el-form-item>
108
             </el-form-item>
107
           </el-col>
109
           </el-col>
108
 
110
 
111
+
112
+          <el-col :span="8" v-if="isShows('单超时长')">
113
+             <el-form-item label="单超时长(h):">
114
+                <el-input v-model="dialysisPrescription.single_time"></el-input>
115
+             </el-form-item>
116
+          </el-col>
117
+
118
+          <el-col :span="8" v-if="isShows('单超脱水')">
119
+             <el-form-item label="单超脱水(L):">
120
+                <el-input v-model="dialysisPrescription.single_water"></el-input>
121
+             </el-form-item>
122
+          </el-col>
123
+
109
           <el-col :span="8" v-if="isShows('透析液配方')">
124
           <el-col :span="8" v-if="isShows('透析液配方')">
110
             <el-form-item label="透析液配方:">
125
             <el-form-item label="透析液配方:">
111
               <!-- <el-input type="number" v-model="dialysisPrescription.dialysate_formulation"></el-input> -->
126
               <!-- <el-input type="number" v-model="dialysisPrescription.dialysate_formulation"></el-input> -->
547
              </el-form-item>
562
              </el-form-item>
548
           </el-col>
563
           </el-col>
549
 
564
 
565
+         
566
+
567
+
568
+          <el-col :span="8" v-if="isShows('置换流量')">
569
+             <el-form-item label="置换流量(L/h):">
570
+                <el-input v-model="dialysisPrescription.replacement_flow"></el-input>
571
+             </el-form-item>
572
+          </el-col>
573
+
550
         </el-row>
574
         </el-row>
551
 
575
 
552
         <el-row :gutter="20">
576
         <el-row :gutter="20">
1042
           displace_speed:"",
1066
           displace_speed:"",
1043
           illness:"",
1067
           illness:"",
1044
           amylaceum:"",
1068
           amylaceum:"",
1069
+          single_time:"",
1070
+          single_water:"",
1071
+          replacement_flow:"",
1045
         },
1072
         },
1046
 
1073
 
1047
         anticoagulant: {
1074
         anticoagulant: {

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

166
                   template_id == 35 ||
166
                   template_id == 35 ||
167
                   template_id == 36 ||
167
                   template_id == 36 ||
168
                   template_id == 38 ||
168
                   template_id == 38 ||
169
+                  template_id == 39 ||
169
                   org_id == 9555)
170
                   org_id == 9555)
170
             "
171
             "
171
           >
172
           >
208
                 template_id != 35 &&
209
                 template_id != 35 &&
209
                 template_id != 36 &&
210
                 template_id != 36 &&
210
                 template_id != 38 &&
211
                 template_id != 38 &&
212
+                template_id != 39 &&
211
                 org_id!=9555
213
                 org_id!=9555
212
             "
214
             "
213
           >
215
           >

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

14
           <th width="76px">静脉压/动脉压({{monitores[0]&&monitores[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
14
           <th width="76px">静脉压/动脉压({{monitores[0]&&monitores[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
15
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
15
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
16
           <th v-if="isShow('跨膜压')" width="76px">跨膜压({{monitores[0]&&monitores[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
16
           <th v-if="isShow('跨膜压')" width="76px">跨膜压({{monitores[0]&&monitores[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}})</th>
17
-          <th v-if=" isShow('超滤量') &&(template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || this.$store.getters.xt_user.template_info.org_id == 9555)" width="76px" > 超滤量(ml)</th>
18
-          <th v-if=" isShow('超滤量') && template_id != 6 && template_id != 9 && template_id != 10 && template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id !=27 && template_id!=28 && template_id!=29 && template_id!=30 && template_id!=31 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && this.$store.getters.xt_user.template_info.org_id != 9555"  width="76px"> 超滤量(L) </th>
17
+          <th v-if=" isShow('超滤量') &&(template_id == 6 || template_id == 9 || template_id == 10 || template_id == 11 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 27 || template_id == 28 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 32 || template_id == 34 || template_id == 35 || template_id == 36 || template_id == 38 || template_id == 39 || this.$store.getters.xt_user.template_info.org_id == 9555)" width="76px" > 超滤量(ml)</th>
18
+          <th v-if=" isShow('超滤量') && template_id != 6 && template_id != 9 && template_id != 10 && template_id != 11 && template_id != 13 && template_id != 17 && template_id != 18 && template_id != 19 && template_id != 20 && template_id != 21 && template_id != 22 && template_id != 23 && template_id != 24 && template_id != 26 && template_id !=27 && template_id!=28 && template_id!=29 && template_id!=30 && template_id!=31 && template_id!=32 && template_id!=34 && template_id!=35 && template_id!=36 && template_id!=38 && template_id != 39 && this.$store.getters.xt_user.template_info.org_id != 9555"  width="76px"> 超滤量(L) </th>
19
           <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 34 || template_id == 35 || template_id == 38)" width="50px"> 超滤率 <br />(ml/h) </th>
19
           <th v-if="isShow('超滤率') && (template_id ==6 || template_id == 10 || template_id == 11 || template_id == 12 || template_id == 13 || template_id == 17 || template_id == 18 || template_id == 19 || template_id == 20 || template_id == 21 || template_id == 22 || template_id == 23 || template_id == 24 || template_id == 26 || template_id == 29 || template_id == 30 || template_id == 31 || template_id == 34 || template_id == 35 || template_id == 38)" width="50px"> 超滤率 <br />(ml/h) </th>
20
           <th v-if="isShow('超滤率') && template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=29 && template_id !=30 && template_id !=31 && template_id !=34 && template_id !=35 && template_id !=38" width="50px"> 超滤率 <br />(L/h) </th>
20
           <th v-if="isShow('超滤率') && template_id !=6 && template_id !=10 && template_id !=11 && template_id !=12 && template_id !=13 && template_id !=17 && template_id !=18 && template_id !=19 && template_id !=20 && template_id !=21 && template_id !=22 && template_id !=23 && template_id !=24 && template_id !=26 && template_id !=29 && template_id !=30 && template_id !=31 && template_id !=34 && template_id !=35 && template_id !=38" width="50px"> 超滤率 <br />(L/h) </th>
21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
21
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>