Browse Source

Merge branch 'update' of http://git.shengws.com/zhangbj/xt_pad into update

csx 5 years ago
parent
commit
8a890636fd

+ 2 - 2
src/pages/main/dialog/AcceptsDialog.vue View File

@@ -48,8 +48,8 @@
48 48
             <el-radio v-model="receiveTreatmentAsses.sick_condition" label="2">严重</el-radio>
49 49
             <el-radio v-model="receiveTreatmentAsses.sick_condition" label="3">危</el-radio>
50 50
           </el-form-item>
51
-          <el-form-item label-width="100dp" label="跌倒险评估评分 : "
52
-                        v-if="isShow('跌倒险评估评分')">
51
+          <el-form-item label-width="100dp" label="跌倒险评估评分 : "
52
+                        v-if="isShow('跌倒险评估评分')">
53 53
             <el-input v-model="receiveTreatmentAsses.score" style="width: 100px"></el-input>
54 54
           </el-form-item>
55 55
 

+ 25 - 0
src/pages/main/dialog/MonitDialog.vue View File

@@ -21,6 +21,7 @@
21 21
                 <th  v-if="isShow('监测时间')"  width="124px">时间</th>
22 22
                 <th  v-if="isShow('血压')" width="72px">血压(mmHg)</th>
23 23
                 <th  v-if="isShow('脉率')" width="80px">脉率(次/分)</th>
24
+                <th  v-if="isShow('体温')" width="80px">体温(℃)</th>
24 25
                 <th  v-if="isShow('呼吸')" width="110px">呼吸(次/分)</th>
25 26
                 <th  v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
26 27
                 <th width="76px">静脉压/动脉压(mmHg)</th>
@@ -38,6 +39,8 @@
38 39
                 <td   v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
39 40
                 <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:""}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:""}}</td>
40 41
                 <td v-if="isShow('脉率')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
42
+                <td v-if="isShow('体温')">{{item.temperature?item.temperature:""}}</td>
43
+                <td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
41 44
                 <td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:""}}</td>
42 45
                 <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:""}}</td>
43 46
                 <td >{{item.venous_pressure?item.venous_pressure:""}}/{{item.arterial_pressure?item.arterial_pressure:""}}</td>
@@ -81,6 +84,10 @@
81 84
               <label>脉率(次/分)</label>
82 85
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.pulse_frequency">
83 86
             </div>
87
+            <div class="cell"  v-if="isShow('体温')">
88
+              <label>体温(℃)</label>
89
+              <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.temperature">
90
+            </div>
84 91
             <div class="cell"  v-if="isShow('呼吸频率')">
85 92
               <label>呼吸频率(次/分)</label>
86 93
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.breathing_rated">
@@ -247,6 +254,7 @@ export default {
247 254
         ultrafiltration_volume: "", // 超滤量
248 255
         sodium_concentration: "", // 钠浓度
249 256
         dialysate_temperature: "", // 透析液温度
257
+        temperature: "", // 体温
250 258
         replacement_rate: "", // 置换率
251 259
         displacement_quantity: "", // 置换量
252 260
         ktv: "", // KT/V(在线)
@@ -380,6 +388,12 @@ export default {
380 388
             this.form.dialysate_temperature = monitor.dialysate_temperature;
381 389
           }
382 390
 
391
+          if(monitor.temperature == 0){
392
+            this.form.temperature = ""
393
+          }else {
394
+            this.form.temperature = monitor.temperature;
395
+          }
396
+
383 397
           if(monitor.replacement_rate == 0){
384 398
             this.form.replacement_rate = ""
385 399
           }else {
@@ -601,6 +615,12 @@ export default {
601 615
         this.form.dialysate_temperature = this.currentRow.dialysate_temperature;
602 616
       }
603 617
 
618
+      if(this.currentRow.temperature == 0){
619
+        this.form.temperature = ""
620
+      }else {
621
+        this.form.temperature = this.currentRow.temperature;
622
+      }
623
+
604 624
       if(this.currentRow.replacement_rate == 0){
605 625
         this.form.replacement_rate = ""
606 626
       }else {
@@ -674,6 +694,7 @@ export default {
674 694
       this.form.ultrafiltration_volume ="";// this.last_monitor_record.ultrafiltration_volume;
675 695
       this.form.sodium_concentration = "";//this.last_monitor_record.sodium_concentration;
676 696
       this.form.dialysate_temperature = ""; //this.last_monitor_record.dialysate_temperature;
697
+      this.form.temperature = ""; //this.last_monitor_record.temperature;
677 698
       this.form.replacement_rate = ""; // this.last_monitor_record.replacement_rate;
678 699
       this.form.displacement_quantity =""; // this.last_monitor_record.displacement_quantity;
679 700
       this.form.ktv = ""; //this.last_monitor_record.ktv;
@@ -705,6 +726,7 @@ export default {
705 726
       params.ultrafiltration_volume = this.form.ultrafiltration_volume;
706 727
       params.sodium_concentration = this.form.sodium_concentration;
707 728
       params.dialysate_temperature = this.form.dialysate_temperature;
729
+      params.temperature = this.form.temperature;
708 730
       params.replacement_rate = this.form.replacement_rate;
709 731
       params.displacement_quantity = this.form.displacement_quantity;
710 732
       params.ktv = this.form.ktv;
@@ -735,6 +757,7 @@ export default {
735 757
           this.form.ultrafiltration_volume = "";
736 758
           this.form.sodium_concentration = "";
737 759
           this.form.dialysate_temperature = "";
760
+          this.form.temperature = "";
738 761
           this.form.replacement_rate = "";
739 762
           this.form.displacement_quantity = "";
740 763
           this.form.ktv = "";
@@ -772,6 +795,7 @@ export default {
772 795
       params.ultrafiltration_volume = this.form.ultrafiltration_volume;
773 796
       params.sodium_concentration = this.form.sodium_concentration;
774 797
       params.dialysate_temperature = this.form.dialysate_temperature;
798
+      params.temperature = this.form.temperature;
775 799
       params.replacement_rate = this.form.replacement_rate;
776 800
       params.displacement_quantity = this.form.displacement_quantity;
777 801
       params.ktv = this.form.ktv;
@@ -804,6 +828,7 @@ export default {
804 828
             this.form.ultrafiltration_volume = "";
805 829
             this.form.sodium_concentration = "";
806 830
             this.form.dialysate_temperature = "";
831
+            this.form.temperature = "";
807 832
             this.form.replacement_rate = "";
808 833
             this.form.displacement_quantity = "";
809 834
             this.form.ktv = "";

+ 2 - 0
src/pages/main/today/TodayTab.vue View File

@@ -419,6 +419,8 @@ export default {
419 419
         monitor.breathing_rate;
420 420
       this.monitor_records[monitor_index].dialysate_temperature =
421 421
         monitor.dialysate_temperature;
422
+        this.monitor_records[monitor_index].temperature =
423
+        monitor.temperature;
422 424
       this.monitor_records[monitor_index].diastolic_bp = monitor.diastolic_bp;
423 425
       this.monitor_records[monitor_index].displacement_quantity =
424 426
         monitor.displacement_quantity;

+ 2 - 2
src/pages/main/today/acceptsAssessment.vue View File

@@ -30,8 +30,8 @@
30 30
           <label>病情 </label>
31 31
           <span class="content">{{sickCondition}} </span>
32 32
         </li>
33
-        <li style="height: 0.6rem;" v-if="isShow('跌倒险评估评分')">
34
-          <label>跌倒险评估评分:</label>
33
+        <li style="height: 0.6rem;" v-if="isShow('跌倒险评估评分')">
34
+          <label>跌倒险评估评分:</label>
35 35
           <span class="content">{{this.record.score}}分</span>
36 36
         </li>
37 37
         <li style="height: 0.6rem;" v-if="isShow('风险程度')">

+ 4 - 0
src/pages/main/today/dialysisMonitoring.vue View File

@@ -7,6 +7,8 @@
7 7
           <th  v-if="isShow('监测时间')" width="124px">时间</th>
8 8
           <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
9 9
           <th v-if="isShow('脉率')" width="80px">脉率(次/分)</th>
10
+          <th v-if="isShow('体温')" width="80px">体温(℃)</th>
11
+          <th v-if="isShow('心率')" width="80px">心率(次/分)</th>
10 12
           <th v-if="isShow('呼吸')" width="110px">呼吸(次/分)</th>
11 13
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
12 14
           <th  width="76px">静脉压/动脉压(mmHg)</th>
@@ -24,6 +26,8 @@
24 26
           <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
25 27
           <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
26 28
           <td v-if="isShow('脉率')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
29
+          <td v-if="isShow('体温')">{{item.temperature?item.temperature:''}}</td>
30
+          <td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
27 31
           <td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:''}}</td>
28 32
           <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
29 33
           <td>{{item.venous_pressure?item.venous_pressure:''}}/{{item.arterial_pressure?item.arterial_pressure:''}}</td>

+ 1 - 1
src/styles/style.scss View File

@@ -82,7 +82,7 @@
82 82
         font-size: 0.34rem;
83 83
         line-height: 0.62rem;
84 84
         float: left;
85
-        width: 5.4rem;
85
+        width: 5.2rem;
86 86
         .content {
87 87
           color: $main-color;
88 88
         }