|
@@ -79,13 +79,11 @@
|
79
|
79
|
<td></td>
|
80
|
80
|
<td></td>
|
81
|
81
|
<td></td>
|
82
|
|
-
|
83
|
|
-
|
84
|
82
|
</tr>
|
85
|
83
|
<template v-for="(schedule) in schedules">
|
86
|
84
|
<tr v-for="(advice, advice_index) in schedule.doctor_advice" :key="advice.id + '_' + advice_index + '_' + index" @click="clickfunction(schedule)">
|
87
|
85
|
<td>{{ advice.parent_id == 0 ? schedule.device_number.number : "" }}</td>
|
88
|
|
- <td>{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
|
|
86
|
+ <td style="color:#409eff;">{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
|
89
|
87
|
<td>{{ advice.parent_id == 0 ? schedule.patient.dialysis_no : "" }}</td>
|
90
|
88
|
<td>{{ getAdaviceType(advice.advice_type,advice.parent_id)}}</td>
|
91
|
89
|
<td>{{ advice.parent_id == 0 ? parseTime(advice.start_time, "{m}-{d} {h}:{i}") : "" }}</td>
|
|
@@ -246,7 +244,7 @@ export default {
|
246
|
244
|
console.log(this.admin_user)
|
247
|
245
|
|
248
|
246
|
for (let i = 0; i < this.admin_user.length; i++) {
|
249
|
|
- if (this.admin_user[i].id == val) {
|
|
247
|
+ if (this.admin_user[i].id == val) {
|
250
|
248
|
return this.admin_user[i].name;
|
251
|
249
|
}
|
252
|
250
|
}
|