|
@@ -182,7 +182,7 @@
|
182
|
182
|
</van-popup>
|
183
|
183
|
|
184
|
184
|
<van-popup
|
185
|
|
- title="双人查对"
|
|
185
|
+ title="双人核对"
|
186
|
186
|
v-model="menuList[5].showPopup"
|
187
|
187
|
:overlay="true"
|
188
|
188
|
:close-on-click-overlay="false"
|
|
@@ -427,7 +427,7 @@ import {parseTime} from '@/utils'
|
427
|
427
|
steps[1].value = 1
|
428
|
428
|
}
|
429
|
429
|
|
430
|
|
- if (typeof this.predialysis_evaluation.id != 'undefined' && !isNaN(this.predialysis_evaluation.id) && this.predialysis_evaluation.id > 0 && this.predialysis_evaluation.evaluator > 0) {
|
|
430
|
+ if (typeof this.predialysis_evaluation.id != 'undefined' && !isNaN(this.predialysis_evaluation.id) && this.predialysis_evaluation.id > 0 && this.predialysis_evaluation.creater > 0) {
|
431
|
431
|
steps[2].value = 1
|
432
|
432
|
}
|
433
|
433
|
|
|
@@ -496,19 +496,10 @@ import {parseTime} from '@/utils'
|
496
|
496
|
|
497
|
497
|
didAddMonitor (monitor) {
|
498
|
498
|
this.monitor_records.push(monitor)
|
499
|
|
-
|
500
|
499
|
this.monitor_records.sort((a, b) => b.operate_time - a.operate_time)
|
501
|
|
-
|
502
|
|
- // for (let index = 0; index < this.monitor_records.length; index++) {
|
503
|
|
- // const record = this.monitor_records[index];
|
504
|
|
- // if (record.operate_time <= monitor.operate_time) {
|
505
|
|
- // this.monitor_records.splice(index, 0, monitor)
|
506
|
|
- // break
|
507
|
|
- // }
|
508
|
|
- // }
|
509
|
500
|
this.monitor_records.reverse()
|
|
501
|
+ this.$refs.monit_dialog.setRecords(this.monitor_records)
|
510
|
502
|
this.last_monitor_record = monitor
|
511
|
|
- // this.$refs.plane_dialog.set_last_monitor_record(monitor)
|
512
|
503
|
},
|
513
|
504
|
|
514
|
505
|
didEditMonitor (monitor) {
|