Bladeren bron

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

See999 4 jaren geleden
bovenliggende
commit
f0380007fd

+ 35 - 3
src/api/common/common.js Bestand weergeven

@@ -47,6 +47,7 @@ export function getConfigurationList(limit, page) {
47 47
 }
48 48
 
49 49
 export function getConfigurationDetail(id, params) {
50
+  console.log('id=====', id)
50 51
   return request({
51 52
     url: 'com/api/getconfigurationdetail?id=' + id,
52 53
     method: 'get',
@@ -383,7 +384,7 @@ export function getNormData(params) {
383 384
 }
384 385
 
385 386
 export function getFirstQuarter(params) {
386
-  console.log('params', params)
387
+  // console.log('params', params)
387 388
   return request({
388 389
     url: '/com/api/getfirstquarter',
389 390
     method: 'get',
@@ -415,7 +416,6 @@ export function getPatientsControl(lapstor, startime, endtime, page, limit) {
415 416
     page: page,
416 417
     limit: limit
417 418
   }
418
-  console.log('params', params)
419 419
   return request({
420 420
     url: '/com/api/getpatientscontrol',
421 421
     method: 'get',
@@ -448,7 +448,6 @@ export function getPatientContorlAnalysis(params) {
448 448
 }
449 449
 
450 450
 export function GetQualityControl(params) {
451
-  console.log('params是', params)
452 451
   return request({
453 452
     url: '/com/api/getqualitycontrol',
454 453
     method: 'Get',
@@ -471,3 +470,36 @@ export function getPatientComplianceDetail(params) {
471 470
     params: params
472 471
   })
473 472
 }
473
+
474
+export function getBloodPressureDetail(id, params) {
475
+  return request({
476
+    url: '/com/api/getbloodpressuredetail?id=' + id,
477
+    method: 'get',
478
+    params: params
479
+  })
480
+}
481
+
482
+export function UpdateBloodPrussre(id, data) {
483
+  console.log('data', data)
484
+  return request({
485
+    url: '/com/api/updatebloodprussre?id=' + id,
486
+    method: 'post',
487
+    data: data
488
+  })
489
+}
490
+
491
+export function getBloodPressureList(params) {
492
+  return request({
493
+    url: '/com/api/getbloodpressurelist',
494
+    method: 'get',
495
+    params: params
496
+  })
497
+}
498
+
499
+export function getMonthBloodList(params) {
500
+  return request({
501
+    url: '/com/api/getmonthbloodlist',
502
+    method: 'get',
503
+    params: params
504
+  })
505
+}

+ 4 - 2
src/xt_pages/dialysis/details/assessmentBefore.vue Bestand weergeven

@@ -136,7 +136,8 @@
136 136
         </li>
137 137
         <li v-if="isShow('穿刺方式')">
138 138
           <label>穿刺方式 : </label>
139
-          <span class="content">{{ getWay(this.record.puncture_way) }}</span>
139
+          <!-- <span class="content">{{ getWay(this.record.puncture_way) }}</span> -->
140
+           <span class="content">{{record.puncture_way}}</span>
140 141
         </li>
141 142
         <li v-if="isShow('其他位置')">
142 143
           <label>其他位置</label>
@@ -261,7 +262,8 @@
261 262
 
262 263
         <li v-if="isShow('皮肤')">
263 264
           <label>皮肤:</label>
264
-          <span class="content">{{ getSkin(this.record.skin) }}</span>
265
+          <!-- <span class="content">{{ getSkin(this.record.skin) }}</span> -->
266
+          <span class="content">{{this.record.skin}}</span>
265 267
           <span class="unit"></span>
266 268
         </li>
267 269
 

+ 89 - 14
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue Bestand weergeven

@@ -227,6 +227,15 @@
227 227
                 <el-option label="有" value="1"></el-option>
228 228
                 <el-option label="无" value="2"></el-option>
229 229
               </el-select>
230
+
231
+              <!-- <el-select v-model="assessmentBeforeDislysis.catheter_bend" placeholder="请选择">
232
+                <el-option
233
+                  v-for="item in catheters"
234
+                  :key="item.value"
235
+                  :label="item.label"
236
+                  :value="item.value">
237
+                </el-option>
238
+              </el-select> -->
230 239
             </el-form-item>
231 240
           </el-col>
232 241
 
@@ -247,12 +256,15 @@
247 256
 
248 257
           <el-col :span="8">
249 258
             <el-form-item label="穿刺方式: " v-if="isShow('穿刺方式')">
250
-              <el-select v-model="assessmentBeforeDislysis.puncture_way">
259
+              <!-- <el-select v-model="assessmentBeforeDislysis.puncture_way">
251 260
                 <el-option :key="0" label="请选择" :value="0"></el-option>
252 261
 
253 262
                 <el-option v-for="item in this.puncture_ways" :label="item.name" :value="item.id"
254 263
                            :key="item.id"></el-option>
255
-              </el-select>
264
+              </el-select> -->
265
+              <el-input v-model="assessmentBeforeDislysis.puncture_way" readonly
266
+                      @focus="showInnerDialog('13')">
267
+              </el-input>
256 268
             </el-form-item>
257 269
           </el-col>
258 270
 
@@ -264,6 +276,15 @@
264 276
                 <el-option label="是" value="1"></el-option>
265 277
                 <el-option label="否" value="2"></el-option>
266 278
               </el-select>
279
+
280
+             <!-- <el-select v-model="assessmentBeforeDislysis.is_hemorrhage" placeholder="请选择">
281
+                <el-option
282
+                  v-for="item in hemorrhages"
283
+                  :key="item.value"
284
+                  :label="item.label"
285
+                  :value="item.value">
286
+                </el-option>
287
+              </el-select> -->
267 288
             </el-form-item>
268 289
           </el-col>
269 290
 
@@ -278,12 +299,16 @@
278 299
 
279 300
           <el-col :span="8" v-if="isShow('皮肤')">
280 301
             <el-form-item label="皮肤: ">
281
-              <el-select v-model="assessmentBeforeDislysis.skin">
302
+              <!-- <el-select v-model="assessmentBeforeDislysis.skin">
282 303
                 <el-option :key="0" label="请选择" :value="0"></el-option>
283 304
 
284 305
                 <el-option v-for="item in this.$store.getters.skin" :label="item.name" :value="item.id"
285 306
                            :key="item.id"></el-option>
286
-              </el-select>
307
+              </el-select> -->
308
+             
309
+              <el-input v-model="assessmentBeforeDislysis.skin" readonly
310
+                      @focus="showInnerDialog('12')">
311
+              </el-input>
287 312
             </el-form-item>
288 313
           </el-col>
289 314
 
@@ -519,6 +544,16 @@
519 544
     name: 'assessment-after-dislysis-dialog',
520 545
     data() {
521 546
       return {
547
+        hemorrhages:[
548
+          {value:0,label:'请选择'},
549
+          {value:1,label: '是'},
550
+          {value:2,label: '否'},
551
+        ],
552
+        catheters:[
553
+          {value:0,label:'请选择'},
554
+          {value:1,label:'有'},
555
+          {value:2,label:'无'}
556
+          ],
522 557
         showTxt: '',
523 558
         hasPermission: true,
524 559
         weight_adjust: {
@@ -604,7 +639,8 @@
604 639
           type: '' // 不同弹框类型,用来匹配数据
605 640
         },
606 641
         machineType: [],
607
-        puncture_ways: ''
642
+        puncture_ways: '',
643
+        skins:[]
608 644
 
609 645
       }
610 646
     },
@@ -646,7 +682,20 @@
646 682
       },
647 683
       show(assessment, lastDryWeightDislysis,last_predialysis_evaluation) {
648 684
         this.lastPredialysisEvaluation = last_predialysis_evaluation
649
-        console.log("22222222",this.lastPredialysisEvaluation)
685
+        if(this.lastPredialysisEvaluation.is_hemorrhage == 1){
686
+           this.lastPredialysisEvaluation.is_hemorrhage = "1"
687
+        }
688
+        if(this.lastPredialysisEvaluation.is_hemorrhage == 2){
689
+          this.lastPredialysisEvaluation.is_hemorrhage = "2"
690
+        }
691
+        if(this.lastPredialysisEvaluation.catheter_bend == 1){
692
+          this.lastPredialysisEvaluation.catheter_bend = "1"
693
+        }
694
+        if(this.lastPredialysisEvaluation.catheter_bend == 2){
695
+            this.lastPredialysisEvaluation.catheter_bend = "2"
696
+        }
697
+         console.log("22222222",this.lastPredialysisEvaluation)
698
+        // console.log("乐行",typeof(this.lastPredialysisEvaluation.is_hemorrhage))
650 699
         this.assessment = assessment
651 700
         this.getPermission()
652 701
         this.isVisibility = true
@@ -804,6 +853,22 @@
804 853
             this.InnerDialogProps.selected = this.assessmentBeforeDislysis.puncture_needle
805 854
             this.InnerDialogProps.isShowTextArea = false
806 855
 
856
+            break
857
+            case '12': // 皮肤
858
+            this.InnerDialogProps.values = this.skins
859
+            this.InnerDialogProps.titles = '皮肤'
860
+            this.InnerDialogProps.type = 'skin'
861
+            this.InnerDialogProps.selected = this.assessmentBeforeDislysis.skin
862
+            this.InnerDialogProps.isShowTextArea = false
863
+
864
+            break
865
+            case '13': // 穿刺方式
866
+            this.InnerDialogProps.values =  this.puncture_ways
867
+            this.InnerDialogProps.titles = '穿刺方式'
868
+            this.InnerDialogProps.type = 'puncture_way'
869
+            this.InnerDialogProps.selected = this.assessmentBeforeDislysis.puncture_way
870
+            this.InnerDialogProps.isShowTextArea = false
871
+
807 872
             break
808 873
         }
809 874
       },
@@ -847,25 +912,33 @@
847 912
           case 'puncture_needle':
848 913
             this.assessmentBeforeDislysis.puncture_needle = val.value.join(',')
849 914
             break
915
+          case 'skin':
916
+            this.assessmentBeforeDislysis.skin = val.value.join(',')
917
+            break
918
+          case 'puncture_way':
919
+            this.assessmentBeforeDislysis.puncture_way = val.value.join(',')
920
+            break
850 921
         }
851 922
       },
852 923
       innerDialogCancle: function() {
853 924
         this.InnerDialogProps.visibility = false
854 925
       }, handleComfirm: function() {
926
+        
855 927
         var arr = this.assessmentBeforeDislysis
928
+        console.log("arr是多少----------",arr)
856 929
         for (let i = 0; i < this.machineType.length; i++) {
857 930
           if (arr.machine_type == this.machineType[i].id) {
858 931
             arr.machine_type = this.machineType[i].name
859 932
           }
860 933
         }
861
-        console.log('arr', arr)
934
+        // console.log('arr', arr)
862 935
         const ParamsQuery = arr
863
-        console.log('paramsquery', ParamsQuery)
936
+        // console.log('paramsquery', ParamsQuery)
864 937
         ParamsQuery['patient'] = this.patient.id
865 938
         ParamsQuery['record_date'] = this.record_date
866 939
         ParamsQuery['mode'] = '1'
867 940
 
868
-        console.log(this.predialysis_evaluation)
941
+        // console.log(this.predialysis_evaluation)
869 942
 
870 943
         if (this.predialysis_evaluation.id == 0) {
871 944
           ParamsQuery['mode'] = '1'
@@ -893,7 +966,7 @@
893 966
             })
894 967
 
895 968
             const assessment_before_dislysis_resp = response.data.data.assessmentBeforeDislysis
896
-            console.log("返回数据",assessment_before_dislysis_resp)
969
+            // console.log("返回数据",assessment_before_dislysis_resp)
897 970
             // prop
898 971
             var predialysis_evaluation = this.predialysis_evaluation
899 972
             for (var index in assessment_before_dislysis_resp) {
@@ -944,9 +1017,9 @@
944 1017
             module: 3
945 1018
           }
946 1019
         }).then(res => {
947
-          console.log(res)
948
-          console.log('透前', this.patient_prop)
949
-          console.log('透前', this.assessment)
1020
+          // console.log(res)
1021
+          // console.log('透前', this.patient_prop)
1022
+           console.log('透前', this.assessment)
950 1023
           if (res.data.state == 0) {
951 1024
             this.hasPermission = false
952 1025
           } else if (res.data.state == 1) {
@@ -991,7 +1064,9 @@
991 1064
       this.blood_access_noise = this.$store.getters.blood_access_noise
992 1065
       var date = this.$route.query && this.$route.query.date
993 1066
       this.record_date = uParseTime(date, '{y}-{m}-{d}')
994
-
1067
+      //获取皮肤
1068
+      this.skins = getDataConfig('hemodialysis','skin')
1069
+      console.log("皮肤",this.skins)
995 1070
       // this.weight_adjust.weight = this.dry_weight.dry_weight
996 1071
 
997 1072
       // if(this.predialysis_evaluation.id == 0){

+ 47 - 47
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue Bestand weergeven

@@ -1300,12 +1300,12 @@
1300 1300
           'vascular_access_desc'
1301 1301
         )
1302 1302
 
1303
-        console.log('血管通路', this.blood_access_option)
1303
+        // console.log('血管通路', this.blood_access_option)
1304 1304
         this.dialyzerPerfusionApparatus = getDataConfig(
1305 1305
           'hemodialysis',
1306 1306
           'dialyzer_perfusion_apparatus'
1307 1307
         )
1308
-        console.log('灌流器', this.dialyzerPerfusionApparatus)
1308
+       console.log('灌流器', this.dialyzerPerfusionApparatus)
1309 1309
 
1310 1310
         if (this.$route.query && this.$route.query.date) {
1311 1311
           var date = this.$route.query && this.$route.query.date
@@ -1420,11 +1420,11 @@
1420 1420
             }
1421 1421
 
1422 1422
             var arr = this.dialysisPrescription
1423
-            console.log('arr', arr)
1423
+            // console.log('arr', arr)
1424 1424
 
1425 1425
 
1426 1426
             const ParamsQuery = arr
1427
-            console.log('医嘱推送2', ParamsQuery)
1427
+            // console.log('医嘱推送2', ParamsQuery)
1428 1428
 
1429 1429
             ParamsQuery['patient'] = this.patient.id
1430 1430
             ParamsQuery['record_date'] = this.record_date
@@ -1499,11 +1499,11 @@
1499 1499
               return
1500 1500
             }
1501 1501
             var arr = this.dialysisPrescription
1502
-            console.log('arr', arr)
1502
+            // console.log('arr', arr)
1503 1503
 
1504 1504
 
1505 1505
             const ParamsQuery = arr
1506
-            console.log('医嘱推送3', ParamsQuery)
1506
+            // console.log('医嘱推送3', ParamsQuery)
1507 1507
 
1508 1508
             ParamsQuery['patient'] = this.patient.id
1509 1509
             ParamsQuery['record_date'] = this.record_date
@@ -1519,7 +1519,7 @@
1519 1519
                   type: 'success',
1520 1520
                   duration: 2000
1521 1521
                 })
1522
-                console.log(hour + ':' + minute)
1522
+                // console.log(hour + ':' + minute)
1523 1523
                 var date = new Date()
1524 1524
 
1525 1525
                 var hour =
@@ -1582,11 +1582,11 @@
1582 1582
 
1583 1583
 
1584 1584
             const ParamsQuery = arr
1585
-            console.log('医嘱推送4', ParamsQuery)
1585
+            // console.log('医嘱推送4', ParamsQuery)
1586 1586
 
1587 1587
             ParamsQuery['patient'] = this.patient.id
1588 1588
             ParamsQuery['record_date'] = this.record_date
1589
-            console.log(this.prescription)
1589
+            // console.log(this.prescription)
1590 1590
             let mode = ''
1591 1591
             if (this.prescription.creater <= 0) {
1592 1592
               mode = 1
@@ -1735,7 +1735,7 @@
1735 1735
           this.add_weight = parseFloat(weight_before - last_weight_after).toFixed(
1736 1736
             2
1737 1737
           )
1738
-          console.log('体重增加', this.add_weight)
1738
+          // console.log('体重增加', this.add_weight)
1739 1739
         }
1740 1740
 
1741 1741
         this.isVisibility = true
@@ -1801,7 +1801,7 @@
1801 1801
             var arr = this.dialysisPrescription
1802 1802
 
1803 1803
             const ParamsQuery = arr
1804
-            console.log('night', ParamsQuery)
1804
+            // console.log('night', ParamsQuery)
1805 1805
             ParamsQuery['patient'] = this.patient.id
1806 1806
             ParamsQuery['record_date'] = this.record_date
1807 1807
             ParamsQuery['mode'] = '1'
@@ -1843,7 +1843,7 @@
1843 1843
 
1844 1844
 
1845 1845
               const ParamsQuery = arr
1846
-              console.log('ParamsQuerytwo', ParamsQuery)
1846
+              // console.log('ParamsQuerytwo', ParamsQuery)
1847 1847
               ParamsQuery['patient'] = this.patient.id
1848 1848
               ParamsQuery['record_date'] = this.record_date
1849 1849
               ParamsQuery['mode'] = '1'
@@ -1890,7 +1890,7 @@
1890 1890
               var arr = this.dialysisPrescription
1891 1891
 
1892 1892
               const ParamsQuery = arr
1893
-              console.log('paramsquerythree', ParamsQuery)
1893
+              // console.log('paramsquerythree', ParamsQuery)
1894 1894
               ParamsQuery['patient'] = this.patient.id
1895 1895
               ParamsQuery['record_date'] = this.record_date
1896 1896
               ParamsQuery['mode'] = '1'
@@ -1954,8 +1954,8 @@
1954 1954
               var arr = this.dialysisPrescription
1955 1955
 
1956 1956
               const ParamsQuery = arr
1957
-              console.log('paramsqueryfour', ParamsQuery)
1958
-              console.log('创建者', this.prescription.creater)
1957
+              // console.log('paramsqueryfour', ParamsQuery)
1958
+              // console.log('创建者', this.prescription.creater)
1959 1959
               // if (this.prescription.creater <= 0) {
1960 1960
               //  mode = 1;
1961 1961
               // } else {
@@ -1999,11 +1999,11 @@
1999 1999
               }
2000 2000
 
2001 2001
               var arr = this.dialysisPrescription
2002
-              console.log('arr', arr)
2002
+              // console.log('arr', arr)
2003 2003
 
2004 2004
 
2005 2005
               const ParamsQuery = arr
2006
-              console.log('paramsqueryfive', ParamsQuery)
2006
+              // console.log('paramsqueryfive', ParamsQuery)
2007 2007
               ParamsQuery['patient'] = this.patient.id
2008 2008
               ParamsQuery['record_date'] = this.record_date
2009 2009
               ParamsQuery['mode'] = '1'
@@ -2042,11 +2042,11 @@
2042 2042
                 }
2043 2043
 
2044 2044
                 var arr = this.dialysisPrescription
2045
-                console.log('arr', arr)
2045
+                // console.log('arr', arr)
2046 2046
 
2047 2047
 
2048 2048
                 const ParamsQuery = arr
2049
-                console.log('ParamsQuerysix', ParamsQuery)
2049
+                // console.log('ParamsQuerysix', ParamsQuery)
2050 2050
                 ParamsQuery['patient'] = this.patient.id
2051 2051
                 ParamsQuery['record_date'] = this.record_date
2052 2052
                 ParamsQuery['mode'] = '1'
@@ -2091,11 +2091,11 @@
2091 2091
                 }
2092 2092
 
2093 2093
                 var arr = this.dialysisPrescription
2094
-                console.log('arr', arr)
2094
+                // console.log('arr', arr)
2095 2095
 
2096 2096
 
2097 2097
                 const ParamsQuery = arr
2098
-                console.log('parasmqueryseven', parasmqueryseven)
2098
+                // console.log('parasmqueryseven', parasmqueryseven)
2099 2099
                 ParamsQuery['patient'] = this.patient.id
2100 2100
                 ParamsQuery['record_date'] = this.record_date
2101 2101
                 ParamsQuery['mode'] = '1'
@@ -2161,10 +2161,10 @@
2161 2161
                 }
2162 2162
 
2163 2163
                 var arr = this.dialysisPrescription
2164
-                console.log('arr', arr)
2164
+                // console.log('arr', arr)
2165 2165
 
2166 2166
                 const ParamsQuery = arr
2167
-                console.log('eight', ParamsQuery)
2167
+                // console.log('eight', ParamsQuery)
2168 2168
                 ParamsQuery['patient'] = this.patient.id
2169 2169
                 ParamsQuery['record_date'] = this.record_date
2170 2170
                 ParamsQuery['mode'] = '1'
@@ -2200,11 +2200,11 @@
2200 2200
             }
2201 2201
 
2202 2202
             var arr = this.dialysisPrescription
2203
-            console.log('arr', arr)
2203
+            // console.log('arr', arr)
2204 2204
 
2205 2205
 
2206 2206
             const ParamsQuery = arr
2207
-            console.log('night', ParamsQuery)
2207
+            // console.log('night', ParamsQuery)
2208 2208
             ParamsQuery['patient'] = this.patient.id
2209 2209
             ParamsQuery['record_date'] = this.record_date
2210 2210
             ParamsQuery['mode'] = '2'
@@ -2272,11 +2272,11 @@
2272 2272
               return
2273 2273
             }
2274 2274
             var arr = this.dialysisPrescription
2275
-            console.log('arr', arr)
2275
+            // console.log('arr', arr)
2276 2276
 
2277 2277
 
2278 2278
             const ParamsQuery = arr
2279
-            console.log('长期处方1', ParamsQuery)
2279
+            // console.log('长期处方1', ParamsQuery)
2280 2280
             ParamsQuery['patient'] = this.patient.id
2281 2281
             ParamsQuery['record_date'] = this.record_date
2282 2282
             ParamsQuery['mode'] = '1'
@@ -2320,11 +2320,11 @@
2320 2320
                 return
2321 2321
               }
2322 2322
               var arr = this.dialysisPrescription
2323
-              console.log('arr', arr)
2323
+              // console.log('arr', arr)
2324 2324
 
2325 2325
 
2326 2326
               const ParamsQuery = arr
2327
-              console.log('长期处方2', ParamsQuery)
2327
+              // console.log('长期处方2', ParamsQuery)
2328 2328
 
2329 2329
               ParamsQuery['patient'] = this.patient.id
2330 2330
               ParamsQuery['record_date'] = this.record_date
@@ -2376,15 +2376,15 @@
2376 2376
               }
2377 2377
 
2378 2378
               var arr = this.dialysisPrescription
2379
-              console.log('arr', arr)
2379
+              // console.log('arr', arr)
2380 2380
 
2381 2381
 
2382 2382
               const ParamsQuery = arr
2383
-              console.log('长期处方3', ParamsQuery)
2383
+              // console.log('长期处方3', ParamsQuery)
2384 2384
 
2385 2385
               ParamsQuery['patient'] = this.patient.id
2386 2386
               ParamsQuery['record_date'] = this.record_date
2387
-              console.log(this.prescription)
2387
+              // console.log(this.prescription)
2388 2388
 
2389 2389
               ParamsQuery['mode'] = '1'
2390 2390
 
@@ -2445,11 +2445,11 @@
2445 2445
                 return
2446 2446
               }
2447 2447
               var arr = this.dialysisPrescription
2448
-              console.log('arr', arr)
2448
+              // console.log('arr', arr)
2449 2449
 
2450 2450
 
2451 2451
               const ParamsQuery = arr
2452
-              console.log('长期处方5', ParamsQuery)
2452
+              // console.log('长期处方5', ParamsQuery)
2453 2453
 
2454 2454
               ParamsQuery['patient'] = this.patient.id
2455 2455
               ParamsQuery['record_date'] = this.record_date
@@ -2493,11 +2493,11 @@
2493 2493
                 return
2494 2494
               }
2495 2495
               var arr = this.dialysisPrescription
2496
-              console.log('arr', arr)
2496
+              // console.log('arr', arr)
2497 2497
 
2498 2498
 
2499 2499
               const ParamsQuery = arr
2500
-              console.log('长期处方6', ParamsQuery)
2500
+              // console.log('长期处方6', ParamsQuery)
2501 2501
               ParamsQuery['patient'] = this.patient.id
2502 2502
               ParamsQuery['record_date'] = this.record_date
2503 2503
               ParamsQuery['mode'] = '1'
@@ -2541,11 +2541,11 @@
2541 2541
                   return
2542 2542
                 }
2543 2543
                 var arr = this.dialysisPrescription
2544
-                console.log('arr', arr)
2544
+                // console.log('arr', arr)
2545 2545
 
2546 2546
 
2547 2547
                 const ParamsQuery = arr
2548
-                console.log('长期处方7', ParamsQuery)
2548
+                // console.log('长期处方7', ParamsQuery)
2549 2549
                 ParamsQuery['patient'] = this.patient.id
2550 2550
                 ParamsQuery['record_date'] = this.record_date
2551 2551
                 ParamsQuery['mode'] = '1'
@@ -2595,11 +2595,11 @@
2595 2595
                   return
2596 2596
                 }
2597 2597
                 var arr = this.dialysisPrescription
2598
-                console.log('arr', arr)
2598
+                // console.log('arr', arr)
2599 2599
 
2600 2600
 
2601 2601
                 const ParamsQuery = arr
2602
-                console.log('长期处方8', ParamsQuery)
2602
+                // console.log('长期处方8', ParamsQuery)
2603 2603
                 ParamsQuery['patient'] = this.patient.id
2604 2604
                 ParamsQuery['record_date'] = this.record_date
2605 2605
                 ParamsQuery['mode'] = '1'
@@ -2669,10 +2669,10 @@
2669 2669
                   return
2670 2670
                 }
2671 2671
                 var arr = this.dialysisPrescription
2672
-                console.log('arr', arr)
2672
+                // console.log('arr', arr)
2673 2673
 
2674 2674
                 const ParamsQuery = arr
2675
-                console.log('长期处方9', ParamsQuery)
2675
+                // console.log('长期处方9', ParamsQuery)
2676 2676
                 ParamsQuery['patient'] = this.patient.id
2677 2677
                 ParamsQuery['record_date'] = this.record_date
2678 2678
                 ParamsQuery['mode'] = '1'
@@ -2713,10 +2713,10 @@
2713 2713
               return
2714 2714
             }
2715 2715
             var arr = this.dialysisPrescription
2716
-            console.log('arr', arr)
2716
+            // console.log('arr', arr)
2717 2717
 
2718 2718
             const ParamsQuery = arr
2719
-            console.log('长期处方10', ParamsQuery)
2719
+            // console.log('长期处方10', ParamsQuery)
2720 2720
 
2721 2721
             ParamsQuery['patient'] = this.patient.id
2722 2722
             ParamsQuery['record_date'] = this.record_date
@@ -2970,9 +2970,9 @@
2970 2970
             }
2971 2971
           })
2972 2972
           .then(res => {
2973
-            console.log(res)
2974
-            console.log('predialysis.creater', this.pre.creater)
2975
-            console.log('admin.id', this.$store.getters.xt_user.user.id)
2973
+            // console.log(res)
2974
+            // console.log('predialysis.creater', this.pre.creater)
2975
+            // console.log('admin.id', this.$store.getters.xt_user.user.id)
2976 2976
             if (res.data.state == 0) {
2977 2977
               this.hasPermission = false
2978 2978
             } else if (res.data.state == 1) {

+ 1 - 0
src/xt_pages/dialysis/details/index.vue Bestand weergeven

@@ -882,6 +882,7 @@ export default {
882 882
           console.log('receiver_treatment_access', receiver_treatment_access)
883 883
           var predialysis_evaluation = resp.data.predialysis_evaluation // 透前评估
884 884
           console.log('透前评估', predialysis_evaluation)
885
+          
885 886
           if (predialysis_evaluation != null) {
886 887
             if (predialysis_evaluation.blood_access_part_id == -2) {
887 888
               predialysis_evaluation.blood_access_part_id = 0

+ 1 - 1
src/xt_pages/qcd/patientComplianceDetails.vue Bestand weergeven

@@ -347,7 +347,7 @@ export default {
347 347
               normal: {
348 348
                 show: true,
349 349
                 position: "top",
350
-                formatter: "{c}g/L"
350
+                formatter: "{c}"
351 351
               }
352 352
             },
353 353
             //配置样式