|
@@ -64,74 +64,76 @@
|
64
|
64
|
</div>
|
65
|
65
|
<van-list v-model="loading" :finished="finished" finished-text=" " @load="onLoad">
|
66
|
66
|
<div class="blueBorder"></div>
|
67
|
|
- <table class="table">
|
68
|
|
- <tr>
|
69
|
|
- <th width="8%">姓名</th>
|
70
|
|
- <th width="6%">机号</th>
|
71
|
|
- <th width="9%">透析号</th>
|
72
|
|
- <th width="10%">排班时间</th>
|
73
|
|
- <th width="10%">透析模式</th>
|
74
|
|
- <th width="9%">脱水量</th>
|
75
|
|
- <th width="10%">体重(透前/透后)</th>
|
76
|
|
- <th width="28%">监控预警(血压/心率)</th>
|
77
|
|
- </tr>
|
78
|
|
- </table>
|
|
67
|
+ <div class="monitoringTable">
|
|
68
|
+ <table class="table">
|
|
69
|
+ <tr>
|
|
70
|
+ <th width="8%">姓名</th>
|
|
71
|
+ <th width="6%">机号</th>
|
|
72
|
+ <th width="9%">透析号</th>
|
|
73
|
+ <th width="10%">排班时间</th>
|
|
74
|
+ <th width="10%">透析模式</th>
|
|
75
|
+ <th width="9%">脱水量</th>
|
|
76
|
+ <th width="10%">体重(透前/透后)</th>
|
|
77
|
+ <th width="28%">监控预警(血压/心率)</th>
|
|
78
|
+ </tr>
|
|
79
|
+ </table>
|
79
|
80
|
|
80
|
|
- <table class="table" v-for="(items, index) in dialysis_scheduals" :key="index">
|
81
|
|
- <tr v-if="items.zone_name.length > 0">
|
82
|
|
- <td width="8%">{{ items.zone_name }}</td>
|
83
|
|
- <td width="6%"></td>
|
84
|
|
- <td width="9%"></td>
|
85
|
|
- <td width="10%"></td>
|
86
|
|
- <td width="10%"></td>
|
87
|
|
- <td width="9%"></td>
|
88
|
|
- <td width="10%"></td>
|
89
|
|
- <td width="28%"></td>
|
90
|
|
- </tr>
|
91
|
|
- <tr v-for="(item, index) in items.scheduals" :key="index" @click="clickfunction(item)">
|
92
|
|
- <td width="8%" style="color:#409eff;">{{ item.patient.name }}</td>
|
93
|
|
- <td width="6%">
|
94
|
|
- {{
|
95
|
|
- item.dialysis_order.device_number.number.length > 0
|
96
|
|
- ? item.dialysis_order.device_number.number
|
97
|
|
- : item.device_number.number
|
98
|
|
- }}
|
99
|
|
- </td>
|
|
81
|
+ <table class="table" v-for="(items, index) in dialysis_scheduals" :key="index">
|
|
82
|
+ <tr v-if="items.zone_name.length > 0">
|
|
83
|
+ <td width="8%">{{ items.zone_name }}</td>
|
|
84
|
+ <td width="6%"></td>
|
|
85
|
+ <td width="9%"></td>
|
|
86
|
+ <td width="10%"></td>
|
|
87
|
+ <td width="10%"></td>
|
|
88
|
+ <td width="9%"></td>
|
|
89
|
+ <td width="10%"></td>
|
|
90
|
+ <td width="28%"></td>
|
|
91
|
+ </tr>
|
|
92
|
+ <tr v-for="(item, index) in items.scheduals" :key="index" @click="clickfunction(item)">
|
|
93
|
+ <td width="8%" style="color:#409eff;">{{ item.patient.name }}</td>
|
|
94
|
+ <td width="6%">
|
|
95
|
+ {{
|
|
96
|
+ item.dialysis_order.device_number.number.length > 0
|
|
97
|
+ ? item.dialysis_order.device_number.number
|
|
98
|
+ : item.device_number.number
|
|
99
|
+ }}
|
|
100
|
+ </td>
|
100
|
101
|
|
101
|
|
- <td width="9%">{{ item.patient.dialysis_no }}</td>
|
102
|
|
- <td width="10%">{{ parseTime(item.schedule_date, "{y}-{m}-{d}") }}</td>
|
103
|
|
- <td width="10%">{{ item.treatment_mode.name }}</td>
|
104
|
|
- <td width="9%">
|
105
|
|
- {{
|
106
|
|
- item.prescription.dewater_amount
|
107
|
|
- ? item.prescription.dewater_amount
|
108
|
|
- : ""
|
109
|
|
- }}
|
110
|
|
- </td>
|
111
|
|
- <td width="10%">
|
112
|
|
- {{
|
113
|
|
- item.assessment_before_dislysis.weight_before
|
114
|
|
- ? item.assessment_before_dislysis.weight_before
|
115
|
|
- : ""
|
116
|
|
- }}/{{
|
117
|
|
- item.assessment_after_dislysis.weight_after
|
118
|
|
- ? item.assessment_after_dislysis.weight_after
|
119
|
|
- : ""
|
120
|
|
- }}
|
121
|
|
- </td>
|
122
|
|
- <td width="28%">
|
123
|
|
- <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 1">低压</span>
|
124
|
|
- <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 2">正常</span>
|
125
|
|
- <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 3">高压</span>
|
126
|
|
- <span v-if="monitorRateStatus(item.monitoring_record) == 1">心率过缓</span>
|
127
|
|
- <span v-if="monitorRateStatus(item.monitoring_record) == 2">正常</span>
|
128
|
|
- <span v-if="monitorRateStatus(item.monitoring_record) == 3">心率过高</span>
|
129
|
|
- </td>
|
130
|
|
- </tr>
|
131
|
|
- </table>
|
|
102
|
+ <td width="9%">{{ item.patient.dialysis_no }}</td>
|
|
103
|
+ <td width="10%">{{ parseTime(item.schedule_date, "{y}-{m}-{d}") }}</td>
|
|
104
|
+ <td width="10%">{{ item.treatment_mode.name }}</td>
|
|
105
|
+ <td width="9%">
|
|
106
|
+ {{
|
|
107
|
+ item.prescription.dewater_amount
|
|
108
|
+ ? item.prescription.dewater_amount
|
|
109
|
+ : ""
|
|
110
|
+ }}
|
|
111
|
+ </td>
|
|
112
|
+ <td width="10%">
|
|
113
|
+ {{
|
|
114
|
+ item.assessment_before_dislysis.weight_before
|
|
115
|
+ ? item.assessment_before_dislysis.weight_before
|
|
116
|
+ : ""
|
|
117
|
+ }}/{{
|
|
118
|
+ item.assessment_after_dislysis.weight_after
|
|
119
|
+ ? item.assessment_after_dislysis.weight_after
|
|
120
|
+ : ""
|
|
121
|
+ }}
|
|
122
|
+ </td>
|
|
123
|
+ <td width="28%">
|
|
124
|
+ <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 1">低压</span>
|
|
125
|
+ <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 2">正常</span>
|
|
126
|
+ <span v-if="monitorBloodPressureStatus(item.monitoring_record) == 3">高压</span>
|
|
127
|
+ <span v-if="monitorRateStatus(item.monitoring_record) == 1">心率过缓</span>
|
|
128
|
+ <span v-if="monitorRateStatus(item.monitoring_record) == 2">正常</span>
|
|
129
|
+ <span v-if="monitorRateStatus(item.monitoring_record) == 3">心率过高</span>
|
|
130
|
+ </td>
|
|
131
|
+ </tr>
|
|
132
|
+ </table>
|
132
|
133
|
|
133
|
|
- <div class="NoData" v-show="dialysis_scheduals.length == 0">
|
134
|
|
- <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
|
|
134
|
+ <div class="NoData" v-show="dialysis_scheduals.length == 0">
|
|
135
|
+ <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
|
|
136
|
+ </div>
|
135
|
137
|
</div>
|
136
|
138
|
</van-list>
|
137
|
139
|
<!-- <div class="monitoringTable">
|
|
@@ -615,20 +617,22 @@ export default {
|
615
|
617
|
}
|
616
|
618
|
|
617
|
619
|
.monitoringTable {
|
618
|
|
- .el-table {
|
619
|
|
- width: 99.9% !important;
|
620
|
|
- }
|
621
|
|
- .newTable {
|
622
|
|
- margin-top: 80px;
|
623
|
|
- @media only screen and (min-width: 768px) {
|
624
|
|
- margin-top: 140px !important;
|
625
|
|
- }
|
626
|
|
- }
|
627
|
|
- .el-table td {
|
628
|
|
- padding: 0;
|
629
|
|
- }
|
630
|
|
- .el-table th {
|
631
|
|
- padding: 6px 0;
|
632
|
|
- }
|
|
620
|
+ width: 100%;
|
|
621
|
+ overflow: auto;
|
|
622
|
+ // .el-table {
|
|
623
|
+ // width: 99.9% !important;
|
|
624
|
+ // }
|
|
625
|
+ // .newTable {
|
|
626
|
+ // margin-top: 80px;
|
|
627
|
+ // @media only screen and (min-width: 768px) {
|
|
628
|
+ // margin-top: 140px !important;
|
|
629
|
+ // }
|
|
630
|
+ // }
|
|
631
|
+ // .el-table td {
|
|
632
|
+ // padding: 0;
|
|
633
|
+ // }
|
|
634
|
+ // .el-table th {
|
|
635
|
+ // padding: 6px 0;
|
|
636
|
+ // }
|
633
|
637
|
}
|
634
|
638
|
</style>
|