|
@@ -880,6 +880,7 @@
|
880
|
880
|
<td> {{monitor.dialysate_temperature}}</td>
|
881
|
881
|
<td> {{monitor.replacement_rate}}</td> -->
|
882
|
882
|
<td>
|
|
883
|
+ <template v-if="(dialysisOrder && monitor.operate_time == dialysisOrder.start_time)">【开始透析】</template>
|
883
|
884
|
{{ monitor.symptom }} {{ monitor.dispose }} {{ monitor.result }}
|
884
|
885
|
</td>
|
885
|
886
|
<td>
|
|
@@ -2102,6 +2103,20 @@ export default {
|
2102
|
2103
|
this.monitors.push([])
|
2103
|
2104
|
}
|
2104
|
2105
|
}
|
|
2106
|
+
|
|
2107
|
+ for (let index = 0; index < this.monitors.length; index++) {
|
|
2108
|
+ const monitor = this.monitors[index]
|
|
2109
|
+ this.monitors[index].end = ''
|
|
2110
|
+ if (Object.keys(monitor).length > 0 && index > 1) {
|
|
2111
|
+ if (this.dialysisOrder && monitor.operate_time == this.dialysisOrder.end_time) {
|
|
2112
|
+ this.monitors[index].end = '【结束透析】'
|
|
2113
|
+ tempmonitorflag = false
|
|
2114
|
+ }
|
|
2115
|
+ if (tempmonitorflag && index == this.monitors.length - 1) {
|
|
2116
|
+ this.monitors[index].end = '【结束透析】'
|
|
2117
|
+ }
|
|
2118
|
+ }
|
|
2119
|
+ }
|
2105
|
2120
|
this.jilurow = this.monitors.length + 1
|
2106
|
2121
|
|
2107
|
2122
|
this.advice_jilurow = this.advices.length + 1
|