|
@@ -871,134 +871,29 @@
|
871
|
871
|
</tr>
|
872
|
872
|
|
873
|
873
|
<tr v-for="(monitor, monindex) in monitors" :key="monindex">
|
874
|
|
- <td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
875
|
|
- <td>
|
876
|
|
- {{
|
877
|
|
- monitor.systolic_blood_pressure
|
878
|
|
- ? monitor.systolic_blood_pressure + "/"
|
879
|
|
- : ""
|
880
|
|
- }}{{
|
881
|
|
- monitor.diastolic_blood_pressure
|
882
|
|
- ? monitor.diastolic_blood_pressure
|
883
|
|
- : ""
|
884
|
|
- }}
|
885
|
|
- </td>
|
886
|
|
- <td>
|
887
|
|
- {{
|
888
|
|
- monitor.pulse_frequency ? monitor.pulse_frequency : ""
|
889
|
|
- }}
|
890
|
|
- </td>
|
891
|
|
- <td>
|
892
|
|
- {{
|
893
|
|
- monitor.breathing_rate ? monitor.breathing_rate : ""
|
894
|
|
- }}
|
895
|
|
- </td>
|
896
|
|
- <td>
|
897
|
|
- {{
|
898
|
|
- monitor.blood_flow_volume
|
899
|
|
- ? monitor.blood_flow_volume
|
900
|
|
- : ""
|
901
|
|
- }}
|
902
|
|
- </td>
|
903
|
|
- <td>
|
904
|
|
- {{
|
905
|
|
- monitor.venous_pressure ? monitor.venous_pressure : ""
|
906
|
|
- }}
|
907
|
|
- </td>
|
908
|
|
- <td v-if="dialysisOrder && (monitor.operate_time > dialysisOrder.end_time)">
|
909
|
|
- {{
|
910
|
|
- monitor.transmembrane_pressure
|
911
|
|
- ? monitor.transmembrane_pressure
|
912
|
|
- : ""
|
913
|
|
- }}
|
914
|
|
- </td>
|
915
|
|
- <td v-if="dialysisOrder && (monitor.operate_time <= dialysisOrder.end_time)">
|
916
|
|
- {{
|
917
|
|
- monitor.transmembrane_pressure
|
918
|
|
- ? monitor.transmembrane_pressure
|
919
|
|
- : 0
|
920
|
|
- }}
|
921
|
|
- </td>
|
922
|
|
- <td>
|
923
|
|
- {{
|
924
|
|
- monitor.dialysate_temperature
|
925
|
|
- ? monitor.dialysate_temperature
|
926
|
|
- : ""
|
927
|
|
- }}
|
928
|
|
- </td>
|
929
|
|
- <td>
|
930
|
|
- {{
|
931
|
|
- monitor.sodium_concentration
|
932
|
|
- ? monitor.sodium_concentration
|
933
|
|
- : ""
|
934
|
|
- }}
|
935
|
|
- </td>
|
936
|
|
- <td v-if="dialysisOrder && (monitor.operate_time > dialysisOrder.end_time)">
|
937
|
|
- {{
|
938
|
|
- monitor.ultrafiltration_volume
|
939
|
|
- ? monitor.ultrafiltration_volume
|
940
|
|
- : ""
|
941
|
|
- }}
|
942
|
|
- </td>
|
943
|
|
- <td v-if="dialysisOrder && (monitor.operate_time <= dialysisOrder.end_time)">
|
944
|
|
- {{
|
945
|
|
- monitor.ultrafiltration_volume
|
946
|
|
- ? monitor.ultrafiltration_volume
|
947
|
|
- : 0
|
948
|
|
- }}
|
949
|
|
- </td>
|
950
|
|
- <td
|
951
|
|
- v-if="
|
952
|
|
- dialysisOrder && (prescription.mode_id == 2 ||
|
953
|
|
- prescription.mode_id == 5) &&
|
954
|
|
- monitor.operate_time > dialysisOrder.end_time
|
955
|
|
- "
|
956
|
|
- width="50"
|
957
|
|
- >
|
958
|
|
- {{
|
959
|
|
- monitor.displacement_quantity
|
960
|
|
- ? monitor.displacement_quantity
|
961
|
|
- : ""
|
962
|
|
- }}
|
963
|
|
- </td>
|
964
|
|
- <td
|
965
|
|
- v-if="
|
966
|
|
- dialysisOrder && (prescription.mode_id == 2 ||
|
967
|
|
- prescription.mode_id == 5) &&
|
968
|
|
- monitor.operate_time <= dialysisOrder.end_time
|
969
|
|
- "
|
970
|
|
- width="50"
|
971
|
|
- >
|
972
|
|
- {{
|
973
|
|
- monitor.displacement_quantity
|
974
|
|
- ? monitor.displacement_quantity
|
975
|
|
- : 0
|
976
|
|
- }}
|
977
|
|
- </td>
|
|
874
|
+ <td> {{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
|
875
|
+ <td> {{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure + "/" : "" }}{{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : "" }} </td>
|
|
876
|
+ <td> {{ monitor.pulse_frequency ? monitor.pulse_frequency : "" }} </td>
|
|
877
|
+ <td> {{ monitor.breathing_rate ? monitor.breathing_rate : "" }} </td>
|
|
878
|
+ <td> {{ monitor.blood_flow_volume ? monitor.blood_flow_volume : "" }} </td>
|
|
879
|
+ <td> {{ monitor.venous_pressure ? monitor.venous_pressure : "" }} </td>
|
|
880
|
+ <td v-if="monitor.operate_time > dialysisOrder.end_time || monitor.operate_time < dialysisOrder.start_time"> {{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : "" }} </td>
|
|
881
|
+ <td v-if="monitor.operate_time <= dialysisOrder.end_time && monitor.operate_time >= dialysisOrder.start_time"> {{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : 0 }} </td>
|
|
882
|
+ <td> {{ monitor.dialysate_temperature ? monitor.dialysate_temperature : "" }} </td>
|
|
883
|
+ <td> {{ monitor.sodium_concentration ? monitor.sodium_concentration : "" }} </td>
|
|
884
|
+ <td v-if="monitor.operate_time > dialysisOrder.end_time || monitor.operate_time < dialysisOrder.start_time"> {{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : "" }} </td>
|
|
885
|
+ <td v-if="monitor.operate_time <= dialysisOrder.end_time && monitor.operate_time >= dialysisOrder.start_time"> {{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : 0 }} </td>
|
|
886
|
+ <td v-if=" (prescription.mode_id == 2 || prescription.mode_id == 5) && monitor.operate_time > dialysisOrder.end_time " width="50" > {{ monitor.displacement_quantity ? monitor.displacement_quantity : "" }} </td>
|
|
887
|
+ <td v-if=" (prescription.mode_id == 2 || prescription.mode_id == 5) && monitor.operate_time <= dialysisOrder.end_time " width="50" > {{ monitor.displacement_quantity ? monitor.displacement_quantity : 0 }} </td>
|
978
|
888
|
<td style="line-height:16px;padding:0px;">
|
979
|
|
- <div
|
980
|
|
- style="min-height:35px;line-height:35px; overflow:hidden;"
|
981
|
|
- >
|
982
|
|
- <span
|
983
|
|
- style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;"
|
984
|
|
- >
|
985
|
|
- <template
|
986
|
|
- v-if="monitor.operate_time == dialysisOrder.start_time"
|
987
|
|
- >【开始透析】</template
|
988
|
|
- >
|
989
|
|
- {{ monitor.end }}
|
990
|
|
- {{ monitor.symptom }} {{
|
991
|
|
- monitor.dispose
|
992
|
|
- }}
|
993
|
|
- {{ monitor.result }}
|
|
889
|
+ <div style="min-height:35px;line-height:35px; overflow:hidden;">
|
|
890
|
+ <span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
|
|
891
|
+ <template v-if=" monitor.operate_time == dialysisOrder.start_time " >【开始透析】</template > {{ monitor.end }} {{ monitor.symptom }} {{ monitor.dispose }} {{ monitor.result }}
|
994
|
892
|
</span>
|
995
|
|
- </div>
|
|
893
|
+ </div>
|
996
|
894
|
</td>
|
997
|
895
|
</tr>
|
998
|
|
- <tr
|
999
|
|
- v-for="(monitor, monindex) in monitors2"
|
1000
|
|
- :key="monindex"
|
1001
|
|
- >
|
|
896
|
+ <tr v-for="(monitor, monindex) in monitors2" :key="monindex" >
|
1002
|
897
|
<td></td>
|
1003
|
898
|
<td></td>
|
1004
|
899
|
<td></td>
|
|
@@ -2161,7 +2056,7 @@ export default {
|
2161
|
2056
|
|
2162
|
2057
|
this.users = response.data.data.users;
|
2163
|
2058
|
this.patientInfo = response.data.data.patientInfo;
|
2164
|
|
-
|
|
2059
|
+
|
2165
|
2060
|
this.patientInfo.birth = uParseTime(
|
2166
|
2061
|
this.patientInfo.birthday,
|
2167
|
2062
|
"{y}-{m}-{d}"
|
|
@@ -2524,20 +2419,17 @@ export default {
|
2524
|
2419
|
return "";
|
2525
|
2420
|
},
|
2526
|
2421
|
getAge: function(val) {
|
2527
|
|
- if (this.org_template_info.template_id == 2 || this.org_template_info.template_id == 0) {
|
2528
|
|
- if(val.birthday != 0){
|
2529
|
|
- return jsGetAge(val.birth, '-')
|
2530
|
|
- }else{
|
2531
|
|
-
|
2532
|
|
- return ''
|
2533
|
|
-
|
|
2422
|
+ if (
|
|
2423
|
+ this.org_template_info.template_id == 2 ||
|
|
2424
|
+ this.org_template_info.template_id == 0
|
|
2425
|
+ ) {
|
|
2426
|
+ if (val.age == 0) {
|
|
2427
|
+ return jsGetAge(val.birth, "-");
|
|
2428
|
+ } else {
|
|
2429
|
+ return val.age;
|
2534
|
2430
|
}
|
2535
|
2431
|
} else {
|
2536
|
|
- if(val.birthday != 0){
|
2537
|
|
- return jsGetAge(val.birth, '-')
|
2538
|
|
- }else{
|
2539
|
|
- return ''
|
2540
|
|
- }
|
|
2432
|
+ return jsGetAge(val.birth, "-");
|
2541
|
2433
|
}
|
2542
|
2434
|
},
|
2543
|
2435
|
newAdviceGroupObject: function() {
|