소스 검색

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

See999 4 년 전
부모
커밋
52c681cbfb

+ 15 - 0
src/store/modules/globalConfig.js 파일 보기

@@ -602,6 +602,21 @@ const global_config = {
602 602
         zongliang_unit: 'iu',
603 603
         gaimingcheng_unit: '',
604 604
         gaijiliang_unit: ''
605
+      },
606
+      8: {
607
+        id: 8,
608
+        name: '依诺肝素',
609
+        type: 1,
610
+        shouji: 1,
611
+        weichi: 1,
612
+        zongliang: 1,
613
+        gaimingcheng: -1,
614
+        gaijiliang: -1,
615
+        shouji_unit: 'iu',
616
+        weichi_unit: 'iu/h',
617
+        zongliang_unit: 'iu',
618
+        gaimingcheng_unit: '',
619
+        gaijiliang_unit: ''
605 620
       }
606 621
     },
607 622
     anticoagulants_set: {

+ 9 - 1
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue 파일 보기

@@ -41,6 +41,12 @@
41 41
               <el-input v-model="form.weight_after"></el-input>
42 42
             </el-form-item>
43 43
           </el-col>
44
+
45
+          <el-col :span="8" v-if="isShow('衣物重')">
46
+            <el-form-item label="衣物重(kg): ">
47
+              <el-input v-model="form.additional_weight"></el-input>
48
+            </el-form-item>
49
+          </el-col>
44 50
         </el-row>
45 51
 
46 52
         <el-row :gutter="20">
@@ -729,7 +735,8 @@ export default {
729 735
         supine_systolic_blood_pressure:'',
730 736
         setting_pressure:'',
731 737
         supine_diastolic_blood_pressure:'',
732
-        diastolic_pressure:''
738
+        diastolic_pressure:'',
739
+        additional_weight:'',
733 740
       }
734 741
     }
735 742
   },
@@ -921,6 +928,7 @@ export default {
921 928
       data['setting_pressure'] = this.form.setting_pressure
922 929
       data["supine_diastolic_blood_pressure"] = this.form.supine_diastolic_blood_pressure
923 930
       data["diastolic_pressure"] = this.form.diastolic_pressure
931
+      data["additional_weight"] = this.form.additional_weight ? parseFloat(this.form.additional_weight) : 0
924 932
       console.log('data', data)
925 933
       postAssessmentAfterDislysis(ParamsQuery, data)
926 934
         .then(response => {

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderTwentyOne.vue 파일 보기

@@ -731,7 +731,7 @@
731 731
             <td>
732 732
               &nbsp;{{ monitor.blood_oxygen_saturation ? monitor.blood_oxygen_saturation : "" }}
733 733
             </td>
734
-            <td>&nbsp;</td>
734
+            <td>&nbsp;{{monitor.blood_sugar?monitor.blood_sugar:""}}</td>
735 735
             <td style="text-align:left;line-height:20px;">
736 736
               &nbsp;{{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
737 737
             </td>

+ 3 - 0
src/xt_pages/dialysis/template/DialysisPrintOrderTwentyThree.vue 파일 보기

@@ -504,6 +504,7 @@
504 504
                     <td width="20">
505 505
                         <span v-if="prescription.anticoagulant == 5">mg</span>
506 506
                         <span v-if="prescription.anticoagulant == 4">mg</span>
507
+                        <span v-if="prescription.anticoagulant == 8">iu</span>
507 508
                         <span v-if="prescription.anticoagulant == 3">iu</span>
508 509
                         <span v-if="prescription.anticoagulant == 2">mg</span>
509 510
                         <span v-if="prescription.anticoagulant == 1">mg</span>
@@ -521,6 +522,7 @@
521 522
                     <td width="40">
522 523
                         <span v-if="prescription.anticoagulant == 5">ml/h</span>
523 524
                         <span v-if="prescription.anticoagulant == 4">mg/h</span>
525
+                        <span v-if="prescription.anticoagulant == 8">iu/h</span>
524 526
                         <span v-if="prescription.anticoagulant == 3">iu/h</span>
525 527
                         <span v-if="prescription.anticoagulant == 2">mg/h</span>
526 528
                         <span v-if="prescription.anticoagulant == 1">mg/h</span>
@@ -536,6 +538,7 @@
536 538
                     <td width="20">
537 539
                         <span v-if="prescription.anticoagulant == 5">mg</span>
538 540
                         <span v-if="prescription.anticoagulant == 4">mg</span>
541
+                        <span v-if="prescription.anticoagulant == 8">iu</span>
539 542
                         <span v-if="prescription.anticoagulant == 3">iu</span>
540 543
                         <span v-if="prescription.anticoagulant == 2">mg</span>
541 544
                         <span v-if="prescription.anticoagulant == 1">mg</span>

+ 2 - 1
src/xt_pages/user/components/PatientForm.vue 파일 보기

@@ -1393,8 +1393,9 @@ export default {
1393 1393
           if (this.isEdit) {
1394 1394
             this.form.age = parseInt(this.form.age);
1395 1395
             this.form.user_sys_before_count = this.form.user_sys_before_count.toString();
1396
-
1396
+            this.form.avatar = this.form.avatar + "?imageView2/2/w/500/h/500/q/90"
1397 1397
             editPatient(this.patientID, this.form)
1398
+
1398 1399
               .then(response => {
1399 1400
                 if (response.data.state == 0) {
1400 1401
                   this.$message.error(response.data.msg);