|
@@ -126,8 +126,10 @@
|
126
|
126
|
(nowMonth < 10 ? '0' + nowMonth : nowMonth) +
|
127
|
127
|
'-' +
|
128
|
128
|
(nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
|
129
|
|
-
|
130
|
|
- this.patient_id = this.$route.query.patient_id
|
|
129
|
+ if(this.$route.query.patient_id){
|
|
130
|
+ this.patient_id = this.$route.query.patient_id
|
|
131
|
+ }
|
|
132
|
+
|
131
|
133
|
this.schedule_date = this.$route.query.date
|
132
|
134
|
|
133
|
135
|
if (this.dialysis_order.id == 0) {
|