Sfoglia il codice sorgente

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

yq1 7 mesi fa
parent
commit
d48626f3b8

+ 2 - 2
src/xt_pages/Dialysisanalysis/new_otherIndicators/components/complete.vue Vedi File

@@ -227,7 +227,7 @@ import html2canvas from "html2canvas"
227 227
         nurseList:[],
228 228
         operators:[],
229 229
         docList:[],
230
-        status_options:[{value:1,label:'达到透析处方时间'},{value:2,label:'未到达处方时间'},{value:3,label:'超出处方时间'}],
230
+        status_options:[{value:1,label:'达到透析处方时间'},{value:3,label:'未达到处方时间'},{value:2,label:'超出处方时间'}],
231 231
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
232 232
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
233 233
         ],
@@ -348,7 +348,7 @@ import html2canvas from "html2canvas"
348 348
                 }
349 349
               }
350 350
               console.log('111111',status_id);
351
-              
351
+
352 352
               this.status_value = status_id
353 353
               this.getdetail(status_id)
354 354
             })

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

@@ -106,7 +106,7 @@
106 106
           <td v-if="isShow('钠浓度1')"> {{ monitor.sodium_concentration ? monitor.sodium_concentration : "/" }} </td>
107 107
           <td v-if="isShow('透析液温度')"> {{ monitor.dialysate_temperature ? monitor.dialysate_temperature : "" }} </td>
108 108
           <td v-if="isShow('透析液温度1')"> {{ monitor.dialysate_temperature_one ? monitor.dialysate_temperature_one : "/" }} </td>
109
-          <td v-if="isShow('置换率')"> {{ monitor.replacement_rate ? monitor.replacement_rate : "" }} </td>
109
+          <td v-if="isShow('置换率')"> {{ monitor.replacement_rate ? monitor.replacement_rate : "0" }} </td>
110 110
           <td v-if="isShow('置换率1')"> {{ monitor.replacement_rate ? monitor.replacement_rate : "/" }} </td>
111 111
           <td v-if="isShow('置换量')"> {{ monitor.displacement_quantity ? monitor.displacement_quantity : "" }} </td>
112 112
           <td v-if="isShow('置换量1')"> {{ monitor.displacement_quantity_one ? monitor.displacement_quantity_one : "/" }} </td>

+ 21 - 1
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue Vedi File

@@ -155,7 +155,7 @@
155 155
                 </el-date-picker>
156 156
 
157 157
 
158
-                <el-select v-if="org_id != 10206" style="width:50%;" v-model="item.med_type" placeholder="医疗类型"
158
+                <el-select v-if="org_id != 10206 && org_id != 10721 && org_id != 0" style="width:50%;" v-model="item.med_type" placeholder="医疗类型"
159 159
                            @change="changevalue">
160 160
                   <el-option
161 161
                     v-for="(item,index) in register"
@@ -175,6 +175,17 @@
175 175
                   </el-option>
176 176
                 </el-select>
177 177
 
178
+
179
+                <el-select v-if="org_id == 10721 || org_id == 0" style="width:50%;" v-model="item.med_type" placeholder="医疗类型"
180
+                           @change="changevalue">
181
+                  <el-option
182
+                    v-for="(item,index) in register10721"
183
+                    :key="index"
184
+                    :label="item.label"
185
+                    :value="item.value">
186
+                  </el-option>
187
+                </el-select>
188
+
178 189
                 <div style="float: right;margin-bottom:5px;margin-right:1%;">
179 190
                   <el-button
180 191
                     round
@@ -637,6 +648,15 @@ export default {
637 648
 
638 649
 
639 650
 
651
+      ],
652
+      register10721: [
653
+        { value: 11, label: '普通门诊' },
654
+        { value: 14, label: '门诊特殊病' },
655
+        { value: 992102, label: '透析(992102)' },
656
+        { value: 140104, label: '门诊慢病(140104)' },
657
+        { value: 140201, label: '门诊特病(140201)' },
658
+        { value: 1111, label: '精一' },
659
+        { value: 1112, label: '精二' },
640 660
       ],
641 661
       medical_care: [
642 662
         { value: 11, label: '普通门诊' },